22 lines
578 B
Plaintext
22 lines
578 B
Plaintext
# Description: Small and fast music player using the ncurses library
|
|
# URL: https://cmus.github.io/
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Packager: Jukka Heino, jukka dot heino at gmail dot com
|
|
# Depends on:
|
|
# Nice to have: alsa-lib, flac, libao, libid3tag, libmad, libmodplug, libmpcdec, libvorbis
|
|
|
|
name=cmus
|
|
version=2.8.0
|
|
release=1
|
|
source=(https://github.com/cmus/cmus/archive/v${version}.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure prefix=/usr CONFIG_ARTS=n
|
|
|
|
make
|
|
make DESTDIR=$PKG install install-man
|
|
rm -rf $PKG/usr/share/doc
|
|
}
|