summaryrefslogtreecommitdiff
path: root/~fauno/notmuch/SRCBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-11-22 13:01:26 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2012-11-22 13:01:26 -0300
commitadc549e8519824da803230cee62bfd7d808df989 (patch)
tree8d227bef813415128428d8033cd0f24f609b6b85 /~fauno/notmuch/SRCBUILD
parent323950ce5e896810f6ea9f0a2401813e1d7573c7 (diff)
downloadabslibre-adc549e8519824da803230cee62bfd7d808df989.tar.gz
abslibre-adc549e8519824da803230cee62bfd7d808df989.tar.bz2
abslibre-adc549e8519824da803230cee62bfd7d808df989.zip
Notmuch was moved to [community]
Diffstat (limited to '~fauno/notmuch/SRCBUILD')
-rwxr-xr-x~fauno/notmuch/SRCBUILD39
1 files changed, 0 insertions, 39 deletions
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: