diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-11-08 16:05:48 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-11-08 16:05:48 -0300 |
commit | f19d0f1aeaad720e0559769ce636b3283cf7b8c6 (patch) | |
tree | 813b0f81820355753f63f56e9ede5baf56dadf71 /~fauno | |
parent | 87a379782f447a957917250334350b25c431ad1f (diff) |
notmuch: fixed PKGBUILD
Diffstat (limited to '~fauno')
-rwxr-xr-x | ~fauno/notmuch/PKGBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/~fauno/notmuch/PKGBUILD b/~fauno/notmuch/PKGBUILD index 57d8d880d..58599073c 100755 --- a/~fauno/notmuch/PKGBUILD +++ b/~fauno/notmuch/PKGBUILD @@ -23,12 +23,12 @@ source=("http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz") build() { cd "$srcdir/${pkgname}-${pkgver}" -# ./configure --prefix=/usr --sysconfdir=/etc -# make + ./configure --prefix=/usr --sysconfdir=/etc + make -# cd bindings/ruby -# ruby extconf.rb -# make + cd bindings/ruby + ruby extconf.rb + make cp -r $srcdir/${pkgname}-${pkgver}/bindings/python{,2} @@ -43,12 +43,12 @@ build() { } check() { - cd "$srcdir/${pkgname}-"* + cd "$srcdir/${pkgname}-${pkgver}" make test } package(){ - cd "$srcdir/${pkgname}-"* + cd "$srcdir/${pkgname}-${pkgver}" make DESTDIR="$pkgdir/" LIBDIR_IN_LDCONFIG=0 install install -D notmuch $pkgdir/usr/sbin/notmuch |