diff options
-rw-r--r-- | libre/aif-libre/PKGBUILD | 4 | ||||
-rw-r--r-- | libre/libui-sh/PKGBUILD | 4 | ||||
-rw-r--r-- | ~mtjm/python2-postfix-policyd-spf/PKGBUILD | 25 |
3 files changed, 29 insertions, 4 deletions
diff --git a/libre/aif-libre/PKGBUILD b/libre/aif-libre/PKGBUILD index fbf03418a..7decd9531 100644 --- a/libre/aif-libre/PKGBUILD +++ b/libre/aif-libre/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Dieter Plaetinck <dieter@plaetinck.be> pkgname=aif-libre -pkgver=2011.08.25 +pkgver=2011.08.31 pkgrel=1 pkgdesc="The ArchLinux Installation Framework (Parabola Rebranded)" arch=('any') @@ -25,7 +25,7 @@ replaces=('aif') conflicts=('aif') provides=('aif') source=($url/snapshot/aif-${pkgver}.tar.bz2) -md5sums=('bdf7edbb88276ea99b45ee041a099e01') +md5sums=('02428484aaf6ce35f2abcccd921c8330') build() { diff --git a/libre/libui-sh/PKGBUILD b/libre/libui-sh/PKGBUILD index 1fb9e9717..5792f88de 100644 --- a/libre/libui-sh/PKGBUILD +++ b/libre/libui-sh/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Dieter Plaetinck <dieter@plaetinck.be> pkgname=libui-sh -pkgver=2011.05.22 +pkgver=2011.08.31 pkgrel=1 pkgdesc="a shell library providing useful UI functions" arch=('any') @@ -11,6 +11,7 @@ license=('GPL3') depends=('bash') optdepends=('dialog: for ncurses support') source=($url/snapshot/${pkgname}-${pkgver}.tar.bz2) +md5sums=('79daf01e4cd5b7fb186d1127d3334092') build() { @@ -21,4 +22,3 @@ build() { } # vim:set ts=2 sw=2 et: -md5sums=('44e422ca76ca99a7df99e2249ff3b4e5') diff --git a/~mtjm/python2-postfix-policyd-spf/PKGBUILD b/~mtjm/python2-postfix-policyd-spf/PKGBUILD new file mode 100644 index 000000000..237b6c9bd --- /dev/null +++ b/~mtjm/python2-postfix-policyd-spf/PKGBUILD @@ -0,0 +1,25 @@ +# From https://aur.archlinux.org/packages.php?ID=42275 +# Maintainer: Filip S. Adamsen <fsa [at] fsadev [dot] com> +# Contributor: Samed Beyribey <ras0ir@eventualis.org> +pkgname=python2-postfix-policyd-spf +_pkgname=pypolicyd-spf +pkgver=0.8.1 +pkgrel=1 +pkgdesc="Python2 Postfix Sender Policy Framework (SPF) filter" +arch=('any') +url="http://www.openspf.org/Software" +license=('GPL') +depends=('postfix' 'python2-pyspf' 'python2') +conflicts=('python-postfix-policyd-spf') +options=(!emptydirs) +source=(http://launchpad.net/pypolicyd-spf/0.8/$pkgver/+download/$_pkgname-$pkgver.tar.gz) +md5sums=('a37c209e88e4dc419f62ae7c6b52f0e7') + +build() { + cd "$srcdir/$_pkgname-$pkgver" + + python2 setup.py build || return 1 + python2 setup.py install --root=$pkgdir/ --optimize=1 || return 1 + install -m644 policyd-spf.conf.commented $pkgdir/etc/python-policyd-spf || return 1 +} + |