2008-08-03 02:13:18 +10:00
|
|
|
# Description: Console audio player.
|
|
|
|
# URL: http://moc.daper.net/
|
2023-03-04 09:28:52 -05:00
|
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
2016-06-28 10:58:22 +10:00
|
|
|
# Depends on: curl libid3tag libmad libsndfile popt
|
2023-03-04 09:28:52 -05:00
|
|
|
# Optional: faad2 lame libmodplug libtimidity mpg123 musepack speex taglib wavpack
|
2008-08-03 02:13:18 +10:00
|
|
|
|
|
|
|
name=moc
|
2018-03-29 23:32:14 +11:00
|
|
|
version=2.5.2
|
2020-03-08 21:47:00 +11:00
|
|
|
release=3
|
2019-11-21 12:41:31 +11:00
|
|
|
source=(http://ftp.daper.net/pub/soft/moc/stable/$name-$version.tar.bz2
|
2020-03-08 21:47:00 +11:00
|
|
|
moc-https.patch)
|
2018-03-29 23:32:14 +11:00
|
|
|
|
2008-08-03 02:13:18 +10:00
|
|
|
|
|
|
|
build() {
|
2008-10-30 20:44:47 +11:00
|
|
|
cd $name-$version
|
|
|
|
|
2020-03-08 21:47:00 +11:00
|
|
|
patch -p0 -i $SRC/moc-https.patch
|
2019-11-21 12:41:31 +11:00
|
|
|
|
2008-08-03 02:13:18 +10:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-nls \
|
2023-02-12 10:08:11 -05:00
|
|
|
--without-ffmpeg \
|
2008-08-03 02:13:18 +10:00
|
|
|
--disable-debug
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2022-11-13 20:04:58 +00:00
|
|
|
install -D -m 0644 -t $PKG/usr/share/moc/ config.example keymap.example
|
2008-08-03 02:13:18 +10:00
|
|
|
rm -rf $PKG/usr/share/doc
|
2023-02-12 10:08:11 -05:00
|
|
|
rm -f $PKG/usr/lib/moc/decoder_plugins/*.la
|
2008-08-03 02:13:18 +10:00
|
|
|
}
|