diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 20:37:04 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-19 20:37:04 -0300 |
commit | a379247a5f187c1608664530e9ff85663eff3201 (patch) | |
tree | 3a49e87e7419c4aca35d1f4f2e591d12c3821c78 /extra/pymad | |
parent | 1bf114d00280c9cfb2075d30830fdf86adb30951 (diff) | |
parent | 81ee1980feda43043eaebae2c596ae116a21f6e5 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/cuetools/PKGBUILD
community/ekg2/PKGBUILD
community/libcss/PKGBUILD
community/libwapcaplet/PKGBUILD
community/lxrandr/PKGBUILD
community/menu-cache/PKGBUILD
community/mumble/PKGBUILD
community/ngircd/PKGBUILD
community/oidentd/PKGBUILD
community/openbox/PKGBUILD
community/preload/PKGBUILD
community/xdg-user-dirs/PKGBUILD
extra/gdome2/PKGBUILD
extra/libdiscid/PKGBUILD
extra/pymad/PKGBUILD
extra/qhull/PKGBUILD
extra/speech-dispatcher/PKGBUILD
multilib/lib32-gmp/PKGBUILD
testing/xorg-server/PKGBUILD
Diffstat (limited to 'extra/pymad')
-rw-r--r-- | extra/pymad/PKGBUILD | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/extra/pymad/PKGBUILD b/extra/pymad/PKGBUILD index 768180463..2c145e71e 100644 --- a/extra/pymad/PKGBUILD +++ b/extra/pymad/PKGBUILD @@ -1,19 +1,24 @@ -# $Id: PKGBUILD 89638 2010-09-02 19:58:32Z remy $ +# $Id: PKGBUILD 150562 2012-02-18 14:43:39Z pierre $ # Maintainer: Mark Rosenstand <mark@archlinux.org # Contributor: Corrado Primier <cp663137@stud.polimi.it> + pkgname=pymad pkgver=0.6 -pkgrel=3 +pkgrel=4 pkgdesc="Python interface to libmad." -arch=(i686 x86_64 'mips64el') +arch=('i686' 'x86_64' 'mips64el') url="http://www.spacepants.org/src/pymad/" license=('LGPL') depends=('libmad' 'python2') -source=(http://www.spacepants.org/src/pymad/download/$pkgname-$pkgver.tar.gz) +source=("http://www.spacepants.org/src/pymad/download/$pkgname-$pkgver.tar.gz") md5sums=('a1405fb4b610348565c8d0e400c5ff18') build() { - cd $startdir/src/$pkgname-$pkgver + cd $srcdir/$pkgname-$pkgver python2 config_unix.py --prefix=/usr - python2 setup.py install --root=$startdir/pkg +} + +package() { + cd $srcdir/$pkgname-$pkgver + python2 setup.py install --root=$pkgdir } |