mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-05 00:32:17 +01:00
30 lines
732 B
Plaintext
30 lines
732 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-libacl
|
|
_pkgname=pylibacl
|
|
pkgver=0.5.0
|
|
pkgrel=0
|
|
pkgdesc="A python module for manipulating ACLs"
|
|
url="http://pylibacl.sourceforge.net/"
|
|
arch="all"
|
|
license="LGPL2+"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="python-dev acl-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="http://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="b9d34da90e6da0813115071b3a1ab204 pylibacl-0.5.0.tar.gz"
|