summaryrefslogtreecommitdiff
path: root/testing/pyalpm/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-05-09 20:31:54 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-05-09 20:31:54 -0300
commit8563d02ef05f21b537e3e1471c4034baa644a55f (patch)
tree6dee20109568b03da07cf3f6e0b61b4f73ed24e2 /testing/pyalpm/PKGBUILD
parentb5e623669f9d93fa23637bc3beca5a1751e70ff1 (diff)
parentbbb460f85242e6ac03f47b74b9d0be66ff089ac4 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: core/libevent/PKGBUILD core/syslinux/PKGBUILD extra/a2ps/PKGBUILD extra/amarok/PKGBUILD extra/libstroke/PKGBUILD extra/pidgin/PKGBUILD
Diffstat (limited to 'testing/pyalpm/PKGBUILD')
-rw-r--r--testing/pyalpm/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/pyalpm/PKGBUILD b/testing/pyalpm/PKGBUILD
new file mode 100644
index 000000000..0db22e4d7
--- /dev/null
+++ b/testing/pyalpm/PKGBUILD
@@ -0,0 +1,23 @@
+# Maintainer : Rémy Oudompheng <remy@archlinux.org>
+
+pkgname=pyalpm
+pkgver=0.4.2
+pkgrel=1
+pkgdesc="Libalpm bindings for Python 3"
+arch=('i686' 'x86_64')
+url="http://projects.archlinux.org/users/remy/pyalpm.git/"
+license=('GPL')
+depends=('python>=3.2' 'pacman<3.6')
+source=("ftp://ftp.archlinux.org/other/pyalpm/$pkgname-$pkgver.tar.gz")
+md5sums=('d5d45cafa98050a4d3c77e4a8f597ff3')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ python setup.py build
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ python setup.py install --root=${pkgdir}
+}
+