summaryrefslogtreecommitdiff
path: root/~fauno
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2011-09-03 11:19:12 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2011-09-03 11:19:12 -0300
commit5b75563036359e6cf43386a379926799159b4ff9 (patch)
treea062f8665d7822710c59a32d54f8f7de1236ca78 /~fauno
parentcffed09fd37e8c39f19409bcbd8cce181b4dfbf9 (diff)
~fauno/notmuch-0.7-2
Included ruby bindings
Diffstat (limited to '~fauno')
-rw-r--r--~fauno/notmuch/PKGBUILD18
1 files changed, 14 insertions, 4 deletions
diff --git a/~fauno/notmuch/PKGBUILD b/~fauno/notmuch/PKGBUILD
index 985df1189..138325de4 100644
--- a/~fauno/notmuch/PKGBUILD
+++ b/~fauno/notmuch/PKGBUILD
@@ -4,24 +4,30 @@
pkgname=notmuch
pkgver=0.7
-pkgrel=1
+pkgrel=2
pkgdesc="Notmuch is not much of an email program"
arch=(i686 x86_64 mips64el)
url="http://notmuchmail.org/"
license=('GPL3')
depends=('xapian-core' 'gmime')
-makedepends=('talloc' 'python2' 'emacs-nox' 'gnupg')
+makedepends=('talloc' 'python2' 'emacs-nox' 'gnupg' 'ruby')
optdepends=('emacs: for using the emacs interface'
'vim: for using the vim interface'
'python2: for using the python bindings'
+ 'ruby: for using the ruby bindings'
'gnupg: for email encryption')
source=("http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz")
+md5sums=('475197e505255b9603eedb53a68aa32d')
build() {
cd "$srcdir/${pkgname}-${pkgver}"
./configure --prefix=/usr --sysconfdir=/etc
make
+
+ cd bindings/ruby
+ ruby extconf.rb
+ make
}
check() {
@@ -46,8 +52,12 @@ package(){
find "." -name '*.py' -print0 |xargs -0 \
sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
-e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
- ln -s ../../lib/libnotmuch.so.1 libnotmuch.so.1
+# ln -s ../../lib/libnotmuch.so.1 libnotmuch.so.1
env LD_LIBRARY_PATH="." python2 setup.py build
env LD_LIBRARY_PATH="." python2 setup.py install --prefix=/usr --root=$pkgdir
+
+# Install ruby bindings
+ cd "$srcdir/${pkgname}-${pkgver}/bindings/ruby"
+ sed -i -e 's,/site_ruby,,g' Makefile
+ make prefix=${pkgdir}/usr install
}
-md5sums=('475197e505255b9603eedb53a68aa32d')