20 lines
579 B
Plaintext
20 lines
579 B
Plaintext
# Description: Small and fast music player using the ncurses library
|
|
# URL: http://onion.dynserv.net/~timo/cmus.html
|
|
# Maintainer: Jukka Heino, jukka at karsikkopuu dot net
|
|
# Packager: Jukka Heino, jukka at karsikkopuu dot net
|
|
# Depends on:
|
|
# Nice to have: alsa-lib, flac, libid3tag, libmad, libmodplug, libmpcdec, libvorbis
|
|
|
|
name=cmus
|
|
version=1.6.8
|
|
release=1
|
|
source=(http://onion.dynserv.net/~timo/files/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --disable-arts
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share/doc
|
|
}
|