contrib/sox/Pkgfile

29 lines
614 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-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
}