diff options
Diffstat (limited to 'community/pylibacl/PKGBUILD')
-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}" +} |