new PKGBUILD

master
yar 2017-01-30 18:36:14 -08:00
commit 4210533318
No known key found for this signature in database
GPG Key ID: 3EA83F013020A074
3 changed files with 72 additions and 0 deletions

29
.SRCINFO Normal file
View File

@ -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

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
alpine/
alpine-git-*.log
alpine-git-*.pkg.tar.xz

40
PKGBUILD Normal file
View File

@ -0,0 +1,40 @@
# Maintainer: Yardena Cohen <yardenack at gmail dot com>
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
}