1 # Contributor: Michael Pusterhofer <michael.pusterhofer@aon.at>
5 pkgdesc="A python extension module that allows you to manipulate the POSIX.1e Access Control Lists present in some os/filesystem combinations"
7 url="http://pylibacl.sourceforge.net"
9 depends=("python" "acl")
12 conflicts=("pylibacl")
14 _gitroot="git://git.k1024.org/pylibacl.git"
19 msg "Connecting to GIT server...."
21 if [ -d $_gitname ] ; then
22 cd $_gitname && git pull origin
23 msg "The local files are updated."
25 git clone $_gitroot $_gitname
28 msg "GIT checkout done or server timeout"
29 msg "Starting make..."
31 rm -rf "$srcdir/$_gitname-build"
32 git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
33 cd "$srcdir/$_gitname"
39 python setup.py install --root="$pkgdir" || return 1