blob: 2533f82d1f065ba5ae89883dffc8274e5b9c8b5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Audio processing on the console, aka "SOund eXchange"
# URL: http://sox.sourceforge.net/
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: libmad
name=sox
version=14.4.2
release=2
source=(http://sourceforge.net/projects/$name/files/$name/$version/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--with-lame \
--with-mad
make
make DESTDIR=$PKG install
}
|