diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-09-07 12:29:46 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-09-07 12:29:46 -0300 |
commit | fba1f9077f6d545ad97b66b10b62ff44425a3c68 (patch) | |
tree | be05c977bb3fb4b75cfcce0e13493625adbe17f1 /~fauno/notmuch | |
parent | 730bda0e79d3e122d665663a18e0c973d7209236 (diff) | |
parent | 3a9ddbf363ba691ca209ad36485390d14ba3b46f (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
libre/abs-libre/PKGBUILD
libre/icecat/PKGBUILD
libre/libretools/PKGBUILD
libre/linux-libre/PKGBUILD
libre/mplayer-libre/PKGBUILD
libre/pacman/0001-makepkg-fix-removing-symbolic-link.patch
libre/pacman/PKGBUILD
libre/python2-libre/PKGBUILD
Diffstat (limited to '~fauno/notmuch')
-rw-r--r-- | ~fauno/notmuch/PKGBUILD | 18 |
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') |