blob: 63d651ab932c1031992daef8c45a5c99b3b3d44b (
plain)
1 # Description: Second generation of the XMMS music player
2 # URL: http://xmms2.sourceforge.net
3 # Maintainer: Rene Lengwinat, rugek at dirtyhack dot net
4 # Depends on: libmad, sqlite3, python
5 # Nice to have: alsa-lib, curl, ecore, pyrex, ruby, samba
6
7 name=xmms2
8 version=0.5DrLecter
9 release=1
10
11 source=(http://heanet.dl.sourceforge.net/sourceforge/xmms2/$name-$version.tar.bz2)
12
13 build () {
14 cd $name-$version
15 ./waf --prefix=/usr --with-mandir=/usr/man configure
16 ./waf build
17 ./waf --destdir=$PKG install
18 }
|