diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-05-17 12:04:10 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-05-17 12:04:10 +0200 |
commit | 545b0b7de32c86264d4ec1eb7b7610e4c1c85946 (patch) | |
tree | 9ad399ce5176aee3c98f216f54a12a3e6d5290c6 /weechat-git/PKGBUILD | |
parent | 8dc1d552c0bab7b72371c3a1529e365410c7548c (diff) | |
parent | ac57415603ea60e9af632e70827dffa22cfff584 (diff) | |
download | aur-packages-545b0b7de32c86264d4ec1eb7b7610e4c1c85946.tar.gz aur-packages-545b0b7de32c86264d4ec1eb7b7610e4c1c85946.tar.xz |
Merge branch 'master' of git://git.server-speed.net/~flo/git/aur
Diffstat (limited to 'weechat-git/PKGBUILD')
-rw-r--r-- | weechat-git/PKGBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/weechat-git/PKGBUILD b/weechat-git/PKGBUILD index 6c18c93..2f94f79 100644 --- a/weechat-git/PKGBUILD +++ b/weechat-git/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Tim Zebulla <amon at faumrahrer dot de> pkgname=weechat-git -pkgver=20091022 +pkgver=20100107 pkgrel=1 pkgdesc="Fast, light & extensible IRC client (curses UI)" arch=('i686' 'x86_64') @@ -13,7 +13,8 @@ makedepends=('git' 'cmake') optdepends=('tcl: tcl scripting support' 'perl>=5.10: perl scripting support' 'python>=2.6: python scripting support' - 'lua: lua scripting support') + 'lua: lua scripting support' + 'ruby: ruby scripting support') provides=('weechat') conflicts=('weechat') options=(!strip) @@ -41,9 +42,9 @@ build() { git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build" cd "$srcdir/$_gitname-build" - cmake -DCMAKE_BUILD_TYPE=Debug -DDISABLE_RUBY=ON -DDISABLE_DOC=ON -DPREFIX=/usr || return 1 + cmake -DCMAKE_BUILD_TYPE=Debug -DDISABLE_DOC=ON -DPREFIX=/usr || return 1 make DESTDIR="$pkgdir/" install } -# note - to disable an option, use -DDISABLE_JABBER=ON -# this should change soon, and will be -DENABLE_JABBER=OFF +# 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 |