2006-02-23 15:26:10 +00:00
|
|
|
# Description: Small and fast music player using the ncurses library
|
2017-03-13 18:29:01 +11:00
|
|
|
# URL: https://cmus.github.io/
|
2010-03-01 00:53:24 +01:00
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2006-04-13 04:29:47 +00:00
|
|
|
# Packager: Jukka Heino, jukka dot heino at gmail dot com
|
2017-03-13 18:29:01 +11:00
|
|
|
# Depends on:
|
2006-02-25 15:55:48 +00:00
|
|
|
# Nice to have: alsa-lib, flac, libao, libid3tag, libmad, libmodplug, libmpcdec, libvorbis
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=cmus
|
2015-08-10 19:40:26 +02:00
|
|
|
version=2.7.1
|
2010-03-26 17:16:56 +01:00
|
|
|
release=1
|
2014-05-22 11:31:57 +02:00
|
|
|
source=(https://github.com/cmus/cmus/archive/v${version}.tar.gz \
|
2011-12-03 14:59:53 +01:00
|
|
|
ffmpeg.diff)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2014-05-22 11:31:57 +02:00
|
|
|
cd $name-$version
|
2011-12-03 14:59:53 +01:00
|
|
|
|
|
|
|
patch -i ../ffmpeg.diff -p1
|
|
|
|
|
2016-03-08 00:28:00 +01:00
|
|
|
./configure prefix=/usr CONFIG_ARTS=n
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
2006-03-01 20:41:23 +00:00
|
|
|
make DESTDIR=$PKG install install-man
|
2016-08-05 17:27:42 +02:00
|
|
|
rm -rf $PKG/usr/share/doc
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|