From dcefa3dbc11058c65ad68205724e2eb80472b05b Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Thu, 2 Feb 2012 12:06:51 -0300 Subject: ~fauno/notmuch-0.11.1-1 --- ~fauno/notmuch/PKGBUILD | 22 +++++++++++----------- ~fauno/notmuch/SRCBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 11 deletions(-) create mode 100644 ~fauno/notmuch/SRCBUILD (limited to '~fauno') diff --git a/~fauno/notmuch/PKGBUILD b/~fauno/notmuch/PKGBUILD index 9b02b0919..6e9c92ea4 100644 --- a/~fauno/notmuch/PKGBUILD +++ b/~fauno/notmuch/PKGBUILD @@ -3,7 +3,7 @@ # Maintainer: Richard Murri pkgname=notmuch -pkgver=0.11_rc3 +pkgver=0.11.1 pkgrel=1 pkgdesc="Notmuch is not much of an email program" arch=(i686 x86_64 mips64el) @@ -16,13 +16,12 @@ optdepends=('emacs: for using the emacs interface' 'python2: for using the python bindings' 'ruby: for using the ruby bindings' 'gnupg: for email encryption') -_commit='310608f279150c735b9fde89f2d632f3b41abd6c' -source=(#"http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz" - "http://git.notmuchmail.org/git/notmuch/snapshot/${_commit}.tar.gz") +source=("https://repo.parabolagnulinux.org/other/${pkgname}-${pkgver}-${pkgrel}-any.src.tar.xz" + # "http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz" + ) build() { - #cd "$srcdir/${pkgname}-${pkgver}" - cd $srcdir/${pkgname}-* + cd "$srcdir/${pkgname}-${pkgver}" ./configure --prefix=/usr --sysconfdir=/etc make @@ -33,14 +32,12 @@ build() { } check() { - #cd "$srcdir/${pkgname}-${pkgver}" - cd $srcdir/${pkgname}-* + cd "$srcdir/${pkgname}-${pkgver}" make test } package(){ - #cd "$srcdir/${pkgname}-${pkgver}" - cd $srcdir/${pkgname}-* + cd "$srcdir/${pkgname}-${pkgver}" make DESTDIR="$pkgdir/" LIBDIR_IN_LDCONFIG=0 install install -D notmuch $pkgdir/usr/sbin/notmuch @@ -65,4 +62,7 @@ package(){ sed -i -e 's,/site_ruby,,g' Makefile make prefix=${pkgdir}/usr install } -md5sums=('0383f55b5e800e626fd805919138c1b3') +md5sums=('764abeb6e277c4c03bd64914c72d89a8' + '886b9fed1326c82aa223b0cfaf717522' + 'e36987a69d0c1e57570f5a854054a729') +md5sums=('764abeb6e277c4c03bd64914c72d89a8') diff --git a/~fauno/notmuch/SRCBUILD b/~fauno/notmuch/SRCBUILD new file mode 100644 index 000000000..29a3a945f --- /dev/null +++ b/~fauno/notmuch/SRCBUILD @@ -0,0 +1,39 @@ +# Maintainer: Nicolás Reynolds + +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: -- cgit v1.2.3