blob: b67366bcaf3e81b8fd0235c667e8a9e778fea80d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Music On Console - lecteur audio en console
# URL: http://moc.daper.net/
# Maintainer: NuTyX core team
# Packager: skingrapher at legtux dot org
# Depends on: flac, libmpeg3, libsndfile, speex, libvorbis, libid3tag, libmad, libsamplerate, taglib, libmpcdec
# Run on:
name=moc
version=2.4.4
release=1
source=(ftp://ftp.daper.net/pub/soft/$name/stable/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|