forked from ports/contrib
27 lines
991 B
Plaintext
27 lines
991 B
Plaintext
# Description: Second generation of the XMMS music player
|
|
# URL: http://xmms2.sourceforge.net
|
|
# Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
|
|
# Packager: Rene Lengwinat, rugek at dirtyhack dot net
|
|
# Depends on: libmad sqlite3 python
|
|
# Nice2have: ecore pyrex ruby samba ffmpeg faad2
|
|
# Comment: ffmpeg and faad2 are broken at the moment because of libmp4v2
|
|
|
|
name=xmms2
|
|
version=0.6
|
|
release=1
|
|
_codename=DrMattDestruction
|
|
|
|
source=(http://dfn.dl.sourceforge.net/project/$name/$name/${version}%20$_codename/$name-$version$_codename.tar.bz2)
|
|
|
|
build () {
|
|
cd $name-$version$_codename
|
|
# fool waf so it does not run ldconfig during installation
|
|
# we does not want any directories nor it's contents
|
|
# to be touched/modified etc. during build,
|
|
# except those in PKGMK_WORK_DIR or /tmp
|
|
sed -i 's|/sbin/ldconfig|/bin/true|' wscript
|
|
./waf --prefix=/usr --with-mandir=/usr/man -p configure
|
|
./waf build
|
|
./waf --destdir=$PKG install
|
|
}
|