summaryrefslogtreecommitdiff
path: root/community/python-pybox2d
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/python-pybox2d
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/python-pybox2d')
-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: