diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-11-23 16:00:21 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-11-23 16:00:21 -0200 |
commit | 13e7da299d6c1d313b32309f5737d887212b7d4c (patch) | |
tree | d4f484d0a730e8f66f3412d1535ff561adf7dea9 /~fauno/notmuch/SRCBUILD | |
parent | e0755bc7fa7cd05b992a9988a9d38587e169f42d (diff) | |
parent | e61f24169547faea84a6b813212bac030feaacd1 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
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: |