summaryrefslogtreecommitdiff
path: root/pcr/python2-xattr/PKGBUILD
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-06-01 22:21:00 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-06-01 22:21:00 -0300
commit888ba65470b25311d05aa55c9f88fb6736ece938 (patch)
tree139490225c3190a6f5728d3756fd17ea9038467b /pcr/python2-xattr/PKGBUILD
parente08edc31359b2fdc2baf4ea9da246c6fac717ab6 (diff)
parentbf725c5b41e91a279bd79c6749b4b8950005d456 (diff)
Merge branch 'master' of ssh://projects.parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'pcr/python2-xattr/PKGBUILD')
-rw-r--r--pcr/python2-xattr/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/pcr/python2-xattr/PKGBUILD b/pcr/python2-xattr/PKGBUILD
new file mode 100644
index 000000000..8f0fb1bca
--- /dev/null
+++ b/pcr/python2-xattr/PKGBUILD
@@ -0,0 +1,28 @@
+# Contributor: Limao Luo <luolimao+AUR@gmail.com>
+# Maintainer : Parabola GNU / Linux-libre Aurélien DESBRIÈRES <aurelien@hackers.camp>
+
+pkgname=python2-xattr
+pkgver=0.7.4
+pkgrel=1
+pkgdesc="Module for manipulating filesystem extended attributes"
+arch=(i686 x86_64)
+url=https://pypi.python.org/pypi/xattr/
+license=(MIT)
+depends=(python2 python2-cffi)
+makedepends=(python2-setuptools)
+source=(http://pypi.python.org/packages/source/x/${pkgname#*-}/${pkgname#*-}-$pkgver.tar.gz)
+
+prepare() {
+ sed -ri 's:^#!/usr/bin/(env )?python$:&2:' ${pkgname#*-}-$pkgver/${pkgname#*-}/tool.py
+}
+
+build() {
+ cd ${pkgname#*-}-$pkgver/
+ python2 setup.py build
+}
+
+package() {
+ cd ${pkgname#*-}-$pkgver/
+ python2 setup.py install --prefix=/usr --root="$pkgdir"
+ install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}