summaryrefslogtreecommitdiff
path: root/testing/pyalpm
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-10-14 23:14:43 +0000
committerroot <root@rshg054.dnsready.net>2011-10-14 23:14:43 +0000
commit4232b74445f80f4175c1485a53a02c79b37a63f1 (patch)
treeff7a0dde570bf886cc5006918a9ee339efecde1c /testing/pyalpm
parente426a2696568231fa5a863cb80f4db9088193732 (diff)
Fri Oct 14 23:14:43 UTC 2011
Diffstat (limited to 'testing/pyalpm')
-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..7a2eccdda
--- /dev/null
+++ b/testing/pyalpm/PKGBUILD
@@ -0,0 +1,23 @@
+# Maintainer : Rémy Oudompheng <remy@archlinux.org>
+
+pkgname=pyalpm
+pkgver=0.5
+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>=4')
+source=("ftp://ftp.archlinux.org/other/pyalpm/$pkgname-$pkgver.tar.gz")
+md5sums=('25b078e0c56d10cf64edd026be317760')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ python setup.py build
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ python setup.py install --root=${pkgdir}
+}
+