mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
697 B
Bash
20 lines
697 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Eric Belanger <belanger@astro.umontreal.ca>
|
|
|
|
pkgname=pysol-sound-server
|
|
pkgver=3.01
|
|
pkgrel=5
|
|
pkgdesc="A Python extension module that plays WAV samples together with MP3 or MOD background music."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.pysol.org/"
|
|
license=("GPL" "LGPL")
|
|
depends=('python>=2.6' 'smpeg')
|
|
source=(http://www.pysol.org/download/pysol/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('5ef963dbf5d5c2f032a7e5a90afb536f')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver/src
|
|
./configure
|
|
make || return 1
|
|
install -D -m 755 build/lib.linux-$CARCH-2.6/pysolsoundserver.so $startdir/pkg/usr/lib/python2.6/site-packages/pysolsoundserver.so
|
|
}
|