diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-01-17 12:02:22 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-01-17 12:02:22 +0100 |
commit | dbd1c0d9ff79e45fe66955f48d87eb32c21965a2 (patch) | |
tree | 1651dee45f6a694bbebc973fb708639368008b61 /weechat-git | |
parent | f56ccc71f9d5d564bdbed1946732a456f4a52a63 (diff) | |
parent | cae7b71196612d90c08c39ba2bdc8d0d974aa412 (diff) | |
download | aur-packages-dbd1c0d9ff79e45fe66955f48d87eb32c21965a2.tar.gz aur-packages-dbd1c0d9ff79e45fe66955f48d87eb32c21965a2.tar.xz |
Merge branch 'master' of ssh://karif/~flo/git/aur
Diffstat (limited to 'weechat-git')
-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 |