summaryrefslogtreecommitdiff
path: root/~fauno
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-02 23:14:44 +0000
committerroot <root@rshg054.dnsready.net>2012-02-02 23:14:44 +0000
commit22e5f5bf64eba5c65674eeb3a8167de2854dbe0e (patch)
treeeb874eff6206b4a1557f42bc02ee9e54c43bc882 /~fauno
parentac5ada660240f37d7347e42123071990f616e418 (diff)
Thu Feb 2 23:14:44 UTC 2012
Diffstat (limited to '~fauno')
-rw-r--r--~fauno/notmuch/PKGBUILD22
-rw-r--r--~fauno/notmuch/SRCBUILD39
2 files changed, 50 insertions, 11 deletions
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 <admin@richardmurri.com>
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 <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: