blob: afead8764d8810a6d5ddb5c1b25965ba25fabfbd (
plain)
1 # Description: Console audio player.
2 # URL: http://moc.daper.net/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Stoyan Zhekov, zhware at hotpop dot com
5 # Depends on: curl libid3tag libmad libsndfile popt
6
7 name=moc
8 version=2.5.1
9 release=1
10 source=(ftp://ftp.daper.net/pub/soft/$name/stable/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure \
16 --prefix=/usr \
17 --disable-nls \
18 --disable-debug
19
20 make
21 make DESTDIR=$PKG install
22 install -D -m 0644 -t $PKG/usr/share/moc/ config.example keymap.example
23 rm -rf $PKG/usr/share/doc
24 }
|