commit 421053331810c4402b2284485ad3fa7b7bd90a1a Author: yar Date: Mon Jan 30 18:36:14 2017 -0800 new PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..5679920 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,29 @@ +# Generated by mksrcinfo v8 +# Tue Jan 31 02:17:45 UTC 2017 +pkgbase = alpine-git + pkgdesc = Fork of the PINE mail client (git) + pkgver = 2.20.999.202.6278103 + pkgrel = 1 + url = http://patches.freeiz.com/alpine/ + arch = i686 + arch = x86_64 + license = APACHE + makedepends = git + depends = gettext + depends = krb5 + depends = libldap + depends = pam + provides = alpine + provides = pine + provides = re-alpine + conflicts = alpine + conflicts = pine + conflicts = re-alpine + replaces = alpine + replaces = pine + replaces = re-alpine + source = git+http://repo.or.cz/alpine.git + sha512sums = SKIP + +pkgname = alpine-git + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..81a955d --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +alpine/ +alpine-git-*.log +alpine-git-*.pkg.tar.xz diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..5e6135e --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,40 @@ +# Maintainer: Yardena Cohen + +gitname=alpine +pkgname=$gitname-git +pkgver=2.20.999.202.6278103 +pkgrel=1 +pkgdesc="Fork of the PINE mail client (git)" +arch=('i686' 'x86_64') +url='http://patches.freeiz.com/alpine/' +license=('APACHE') +depends=( + 'gettext' + 'krb5' + 'libldap' + 'pam' +) +makedepends=('git') +provides=('alpine' 'pine' 're-alpine') +conflicts=('alpine' 'pine' 're-alpine') +replaces=('alpine' 'pine' 're-alpine') +source=("git+http://repo.or.cz/${gitname}.git") +sha512sums=('SKIP') + +pkgver() { + cd "${srcdir}/${gitname}" + local ver="$(cat VERSION).$(git rev-list --count HEAD).$(git rev-parse --short HEAD)" + printf "%s" "${ver//-/.}" +} +build() { + cd "${srcdir}/${gitname}" + LIBS+="-lpam -lkrb5 -lcrypto" ./configure --prefix=/usr \ + --without-passfile --without-tcl --disable-shared \ + --with-system-pinerc=/etc/${pkgname}.d/pine.conf \ + --with-system-fixed-pinerc=/etc/${pkgname}.d/pine.conf.fixed + make +} +package() { + cd "${srcdir}/${gitname}" + make DESTDIR="${pkgdir}" install +}