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/pyxattr/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/pyxattr/PKGBUILD')
-rw-r--r-- | community/pyxattr/PKGBUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/community/pyxattr/PKGBUILD b/community/pyxattr/PKGBUILD new file mode 100644 index 000000000..2b0603640 --- /dev/null +++ b/community/pyxattr/PKGBUILD @@ -0,0 +1,19 @@ +# $Id: PKGBUILD 31904 2010-11-07 19:21:57Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> + +pkgname=pyxattr +pkgver=0.5.0 +pkgrel=1 +pkgdesc="A python extension module that allows you to manipulate the extended attributes." +arch=('i686' 'x86_64') +url='http://pyxattr.sourceforge.net/' +license=('GPL') +depends=('python2') +makedepends=('python2-distribute') +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('0f7ab1e185087329e40f7de218517c84') + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + python2 setup.py install --root="${pkgdir}" +} |