diff options
author | root <root@rshg054.dnsready.net> | 2012-10-16 00:33:10 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-10-16 00:33:10 -0700 |
commit | 99d0ec7ebad2eda5f3a03098962e3b250e3bef4c (patch) | |
tree | 8b24758dfa8c691cda33acaa931699ce81dc1c15 /community-staging/python-pyxattr | |
parent | e9dd04abd0ede1143ea4af10059e37c2f599e1fd (diff) |
Tue Oct 16 00:33:08 PDT 2012
Diffstat (limited to 'community-staging/python-pyxattr')
-rw-r--r-- | community-staging/python-pyxattr/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community-staging/python-pyxattr/PKGBUILD b/community-staging/python-pyxattr/PKGBUILD new file mode 100644 index 000000000..b2a40177d --- /dev/null +++ b/community-staging/python-pyxattr/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 77978 2012-10-16 01:55:36Z allan $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: Jon Bergli Heier <snakebite@jvnv.net> + +pkgname=('python2-pyxattr' 'python-pyxattr') +pkgbase=python-pyxattr +_pkgname=pyxattr +pkgver=0.5.0 +pkgrel=4 +pkgdesc='A python extension module that allows you to manipulate the extended attributes.' +arch=('i686' 'x86_64') +url='http://pyxattr.sourceforge.net/' +license=('GPL') +makedepends=('python2' 'python' 'python2-distribute' 'python-distribute') +source=("http://downloads.sourceforge.net/${_pkgname}/${_pkgname}-${pkgver}.tar.gz") +md5sums=('0f7ab1e185087329e40f7de218517c84') + +package_python2-pyxattr() { + depends=('python2') + provides=('pyxattr') + conflicts=('pyxattr') + replaces=('pyxattr') + + cd "${srcdir}/${_pkgname}-${pkgver}" + python2 setup.py install --root="${pkgdir}" +} + +package_python-pyxattr() { + depends=('python') + + cd "${srcdir}/${_pkgname}-${pkgver}" + python setup.py install --root="${pkgdir}" +} |