diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/pylibacl |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/pylibacl')
-rw-r--r-- | community/pylibacl/PKGBUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/community/pylibacl/PKGBUILD b/community/pylibacl/PKGBUILD new file mode 100644 index 000000000..6e0624f12 --- /dev/null +++ b/community/pylibacl/PKGBUILD @@ -0,0 +1,19 @@ +# $Id: PKGBUILD 31901 2010-11-07 19:18:54Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> + +pkgname=pylibacl +pkgver=0.5.0 +pkgrel=1 +pkgdesc="A python extension module that allows you to manipulate the POSIX.1e ACLs." +arch=('i686' 'x86_64') +url='http://pylibacl.sourceforge.net/' +license=('GPL') +depends=('python2') +makedepends=('python2-distribute') +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('b9d34da90e6da0813115071b3a1ab204') + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + python2 setup.py install --root="${pkgdir}" +} |