blob: 6d89b585ff8d9694231dd0990b03fc46df88850f (
plain)
1 # Description: Second generation of the XMMS music player
2 # URL: http://xmms2.sourceforge.net
3 # Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
4 # Packager: Rene Lengwinat, rugek at dirtyhack dot net
5 # Depends on: libmad sqlite3 python glib
6 # Nice2have: ecore pyrex ruby samba ffmpeg faad2
7
8 name=xmms2
9 version=0.8
10 release=1
11 _codename=DrO_o
12
13 source=(http://download.sourceforge.net/project/$name/$name/${version}%20$_codename/$name-$version$_codename.tar.bz2)
14
15 build () {
16 cd $name-$version$_codename
17 ./waf --prefix=/usr --mandir=/usr/man configure
18 ./waf $(egrep -o '[-]j[[:space:]]*[[:digit:]]+' <<< "${MAKEFLAGS}") build
19 ./waf --without-ldconfig --destdir=$PKG install
20 }
|