contrib/sox/Pkgfile

28 lines
626 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/
2008-03-26 03:45:31 +01:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2006-12-20 09:30:52 +01:00
# Packager: Martin Opel, mo at obbl-net dot de
# Depends on: lame libmad libsamplerate libvorbis ladspa libid3tag
# Optional ffmpeg
2008-01-01 12:47:02 +01:00
2006-12-20 09:30:52 +01:00
name=sox
2008-12-19 15:43:21 +01:00
version=14.2.0
2006-12-20 09:30:52 +01:00
release=1
source=(http://downloads.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
2006-12-20 09:30:52 +01:00
build() {
2008-12-19 15:43:21 +01:00
cd $name-$version
2007-03-06 16:02:59 +01:00
./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
}