Initial import

This commit is contained in:
Zach Callear 2015-08-14 09:37:06 -06:00
commit 53b18fcdfa
2 changed files with 35 additions and 0 deletions

16
.SRCINFO Normal file
View File

@ -0,0 +1,16 @@
pkgbase = postfix-policyd-spf-perl
pkgdesc = Postfix SPF policy engine for Sender Policy Framework (SPF) checking, written in perl
pkgver = 2.010
pkgrel = 1
url = https://launchpad.net/postfix-policyd-spf-perl/
arch = i686
arch = x86_64
license = GPL
depends = perl-mail-spf
depends = perl-netaddr-ip
depends = perl-sys-hostname-long
source = https://launchpad.net/postfix-policyd-spf-perl/trunk/release2.010/+download/postfix-policyd-spf-perl-2.010.tar.gz
md5sums = 768f5425db736aedc9c40a68e2d58414
pkgname = postfix-policyd-spf-perl

19
PKGBUILD Normal file
View File

@ -0,0 +1,19 @@
#Maintainer: Zach Callear <zach@callear.org>
#Original Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=postfix-policyd-spf-perl
pkgver=2.010
pkgrel=1
pkgdesc='Postfix SPF policy engine for Sender Policy Framework (SPF) checking, written in perl'
arch=('i686' 'x86_64')
url='https://launchpad.net/postfix-policyd-spf-perl/'
license=('GPL')
depends=('perl-mail-spf' 'perl-netaddr-ip' 'perl-sys-hostname-long')
source=("https://launchpad.net/postfix-policyd-spf-perl/trunk/release${pkgver}/+download/${pkgname}-${pkgver}.tar.gz")
md5sums=('768f5425db736aedc9c40a68e2d58414')
package() {
cd ${pkgname}-${pkgver}
install -D ${pkgname} ${pkgdir}/usr/lib/postfix/${pkgname}
}