summaryrefslogtreecommitdiff
path: root/community/python-pybox2d/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/python-pybox2d/PKGBUILD')
-rw-r--r--community/python-pybox2d/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/python-pybox2d/PKGBUILD b/community/python-pybox2d/PKGBUILD
new file mode 100644
index 000000000..6ef9679f8
--- /dev/null
+++ b/community/python-pybox2d/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+pkgname=python-pybox2d
+pkgver=370
+pkgrel=1
+pkgdesc="Python wrapper for Box2D"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/pybox2d"
+license=('GPL')
+depends=('python' 'swig')
+makedepends=('subversion')
+source=("svn+http://pybox2d.googlecode.com/svn/trunk/")
+md5sums=('SKIP')
+
+build() {
+ cd ${srcdir}/trunk
+
+ python setup.py build
+}
+
+package() {
+ cd ${srcdir}/trunk
+
+ python setup.py install --root=${pkgdir}
+}
+# vim: sw=2 ts=2 et: