contrib/sox/Pkgfile

28 lines
581 B
Plaintext
Raw Normal View History

2006-12-20 09:30:52 +01:00
# Description: Audio conversion tools, (c) copyright Lance Norskog.
# URL: http://sox.sourceforge.net/
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Martin Opel, mo at obbl-net dot de
2008-03-14 11:04:50 +01:00
# Depends on: lame libmad libsamplerate libvorbis
2008-01-01 12:47:02 +01:00
2006-12-20 09:30:52 +01:00
name=sox
2008-02-16 07:38:17 +01:00
version=14.0.1
2006-12-20 09:30:52 +01:00
release=1
2007-03-06 16:02:59 +01:00
source=(http://dl.sourceforge.net/sourceforge/sox/sox-$version.tar.gz)
2006-12-20 09:30:52 +01:00
build() {
2007-03-06 16:02:59 +01:00
cd sox-$version
./configure \
--prefix=/usr \
2008-01-01 12:47:02 +01:00
--mandir=$PKG/usr/man \
--disable-static
2007-03-06 16:02:59 +01:00
make
make prefix=$PKG/usr install
2008-02-16 07:38:17 +01:00
pushd $PKG/usr/bin
ln -s sox $PKG/usr/bin/soxmix
popd
2006-12-20 09:30:52 +01:00
}