diff options
Diffstat (limited to '~fauno/notmuch/SRCBUILD')
-rwxr-xr-x | ~fauno/notmuch/SRCBUILD | 39 |
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: |