blob: 4dbce153e7022e85e280219c350c876c14787b1e (
plain)
1 # Description: Small and fast music player using the ncurses library
2 # URL: http://cmus.sf.net/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: Jukka Heino, jukka dot heino at gmail dot com
5 # Depends on:
6 # Nice to have: alsa-lib, flac, libao, libid3tag, libmad, libmodplug, libmpcdec, libvorbis
7
8 name=cmus
9 version=2.5.1
10 release=1
11 source=(https://github.com/cmus/cmus/archive/v${version}.tar.gz \
12 ffmpeg.diff)
13
14 build() {
15 cd $name-$version
16
17 patch -i ../ffmpeg.diff -p1
18
19 ./configure prefix=/usr mandir=/usr/man CONFIG_ARTS=n
20 make
21 make DESTDIR=$PKG install install-man
22 rm -rf $PKG/usr/share/{doc,cmus/*.theme}
23 }
|