summaryrefslogtreecommitdiff
path: root/community/pysol-sound-server/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/pysol-sound-server/PKGBUILD')
-rw-r--r--community/pysol-sound-server/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/pysol-sound-server/PKGBUILD b/community/pysol-sound-server/PKGBUILD
new file mode 100644
index 000000000..254e01b88
--- /dev/null
+++ b/community/pysol-sound-server/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id: PKGBUILD 25949 2010-09-12 02:51:50Z ebelanger $
+# Maintainer: Eric Belanger <eric@archlinux.org>
+
+pkgname=pysol-sound-server
+pkgver=3.01
+pkgrel=7
+pkgdesc="A Python extension module that plays WAV samples together with MP3 or MOD background music"
+arch=('i686' 'x86_64' 'mips64el')
+url="http://www.pysol.org/"
+license=('GPL' 'LGPL')
+depends=('python2' 'smpeg')
+source=(http://www.pysol.org/download/pysol/$pkgname-$pkgver.tar.bz2)
+md5sums=('5ef963dbf5d5c2f032a7e5a90afb536f')
+sha1sums=('010cc2d9634a1796fb9d44c8925b4b62c9568611')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}/src"
+ ./configure
+ make PYTHON=python2
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}/src"
+ python2 setup.py install --root="${pkgdir}"
+}