From c6000c9d9949b3326fb82f02431899ab6774b960 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 16 Dec 2012 11:51:24 +0100 Subject: big cleanup --- weechat-git/PKGBUILD | 50 ------------------------------------------ weechat-git/weechatgit.install | 6 ----- 2 files changed, 56 deletions(-) delete mode 100644 weechat-git/PKGBUILD delete mode 100644 weechat-git/weechatgit.install (limited to 'weechat-git') diff --git a/weechat-git/PKGBUILD b/weechat-git/PKGBUILD deleted file mode 100644 index dc724fa..0000000 --- a/weechat-git/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# Maintainer: Licia Todd -# Contributor: Tim Zebulla - -pkgname=weechat-git -pkgver=20100804 -pkgrel=1 -pkgdesc="Fast, light & extensible IRC client (curses UI)" -arch=('i686' 'x86_64') -url="http://weechat.flashtux.org" -license=('GPL3') -depends=('aspell' 'iksemel') -makedepends=('git' 'cmake') -optdepends=('tcl: tcl scripting support' - 'perl>=5.10: perl scripting support' - 'python>=2.6: python scripting support' - 'lua: lua scripting support' - 'ruby: ruby scripting support') -provides=('weechat') -conflicts=('weechat') -options=(!strip) -install=weechatgit.install - -_gitroot="git://git.sv.gnu.org/weechat.git" -_gitname="weechat" - -build() { - cd "$srcdir" - msg "Connecting to GIT server...." - - if [ -d $_gitname ] ; then - cd $_gitname && git pull origin - msg "The local files are updated." - else - msg "First time connected - cloning repo, this may take a while..." - git clone $_gitroot - fi - - msg "GIT checkout done or server timeout" - msg "Starting cmake..." - - rm -rf "$srcdir/$_gitname-build" - git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build" - cd "$srcdir/$_gitname-build" - - cmake -DCMAKE_BUILD_TYPE=Debug -DDISABLE_DOC=ON -DPREFIX=/usr || return 1 - make DESTDIR="$pkgdir/" install -} -# note - to disable an option, use -DDISABLE_RUBY=ON -# this should change soon, and will be -DENABLE_RUBY=OFF -# also, you can see the configure options with ccmake, then just -DOPTIONHERE=ON/OFF diff --git a/weechat-git/weechatgit.install b/weechat-git/weechatgit.install deleted file mode 100644 index be10994..0000000 --- a/weechat-git/weechatgit.install +++ /dev/null @@ -1,6 +0,0 @@ -post_install() { - echo "------------------------------------------------------------------------------" - echo "You've just built weechat from GIT." - echo "This is a development version and may therefore be unstable." - echo "------------------------------------------------------------------------------" -} -- cgit v1.2.3-24-g4f1b