diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-12-31 17:29:39 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-12-31 17:29:39 -0300 |
commit | 6f102d1647580e0bb9513c124b26a64c77da4f15 (patch) | |
tree | 0340f1f588be251183fe2b251bdba778f2c85c22 /~fauno/notmuch | |
parent | 433900b14f11dc9ee55b72e8e5946bf47f65b636 (diff) | |
parent | b6cb10de275cea63bab0bee2a98342afa4fdc4ee (diff) |
Merge branch 'master' of ssh://gparabola/srv/git/abslibre
Diffstat (limited to '~fauno/notmuch')
-rwxr-xr-x | ~fauno/notmuch/PKGBUILD | 76 | ||||
-rwxr-xr-x | ~fauno/notmuch/SRCBUILD | 39 |
2 files changed, 0 insertions, 115 deletions
diff --git a/~fauno/notmuch/PKGBUILD b/~fauno/notmuch/PKGBUILD deleted file mode 100755 index 58599073c..000000000 --- a/~fauno/notmuch/PKGBUILD +++ /dev/null @@ -1,76 +0,0 @@ -# Maintainer: fauno <fauno at kiwwwi.com.ar> -# Maintainer: Olivier Ramonat <olivier at ramonat dot fr> -# Maintainer: Richard Murri <admin@richardmurri.com> - -pkgname=notmuch -pkgver=0.14 -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' 'talloc') -makedepends=('python2' 'python' 'emacs' 'gnupg' 'ruby' 'pkgconfig') -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') -options=(!distcc !makeflags) - -source=("http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz") - -build() { - cd "$srcdir/${pkgname}-${pkgver}" - - ./configure --prefix=/usr --sysconfdir=/etc - make - - cd bindings/ruby - ruby extconf.rb - make - - cp -r $srcdir/${pkgname}-${pkgver}/bindings/python{,2} - - cd $srcdir/${pkgname}-${pkgver}/bindings/python - env LD_LIBRARY_PATH="." python setup.py build - - cd $srcdir/${pkgname}-${pkgver}/bindings/python2 - 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,' - env LD_LIBRARY_PATH="." python2 setup.py build -} - -check() { - cd "$srcdir/${pkgname}-${pkgver}" - make test -} - -package(){ - cd "$srcdir/${pkgname}-${pkgver}" - make DESTDIR="$pkgdir/" LIBDIR_IN_LDCONFIG=0 install - - install -D notmuch $pkgdir/usr/sbin/notmuch - - mkdir -p $pkgdir/usr/share/vim/vimfiles/{plugin,syntax} - - cd vim && make PREFIX="$pkgdir/usr/share/vim/vimfiles" install - - # Install python bindings - - cd $srcdir/${pkgname}-${pkgver}/bindings/python2 - env LD_LIBRARY_PATH="." python2 setup.py install --prefix=/usr --root=$pkgdir - - cd $srcdir/${pkgname}-${pkgver}/bindings/python - env LD_LIBRARY_PATH="." python 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 - -# Remove conflicting zsh completion - rm -r ${pkgdir}/usr/share/zsh -} -md5sums=('5eb3f225d3eb37862932f6baa5780d15') diff --git a/~fauno/notmuch/SRCBUILD b/~fauno/notmuch/SRCBUILD deleted file mode 100755 index 29a3a945f..000000000 --- a/~fauno/notmuch/SRCBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: Nicolás Reynolds <fauno@parabola.nu> - -pkgname=notmuch -pkgver=0.11.1 -pkgrel=1 -pkgdesc="Notmuch is not much of an email program" -arch=('any') -url="http://notmuchmail.org/" -license=('GPL3') -makedepends=('git') - -_gitroot="git://notmuchmail.org/git/notmuch" -_gitname="${pkgname}" - -build() { - cd "$srcdir" - msg 'Connecting to GIT server...' - - if [ -d $_gitname ] ; then - cd $_gitname; git pull origin - msg 'The local files are updated.' - else - git clone $_gitroot $_gitname - fi - - msg "GIT checkout done or server timeout" - -} - -package() { - cd ${pkgdir} - export PKGDEST=${SRCDEST} - export PKGEXT=.src.tar.xz - - git clone ${srcdir}/${pkgname} ${pkgname}-${pkgver} - -} - -# vim:set ts=2 sw=2 et: |