forked from ports/contrib
e1ad639999
also added ffmpeg as optional
29 lines
614 B
Plaintext
29 lines
614 B
Plaintext
# Description: Audio conversion tools, (c) copyright Lance Norskog.
|
|
# URL: http://sox.sourceforge.net/
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: Martin Opel, mo at obbl-net dot de
|
|
# Depends on: lame libmad libsamplerate libvorbis ladspa libid3tag
|
|
# Optional ffmpeg
|
|
|
|
name=sox
|
|
version=14.0.1
|
|
release=1
|
|
source=(http://dl.sourceforge.net/sourceforge/sox/sox-$version.tar.gz)
|
|
|
|
build() {
|
|
cd sox-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=$PKG/usr/man \
|
|
--disable-static
|
|
|
|
make
|
|
make prefix=$PKG/usr install
|
|
|
|
pushd $PKG/usr/bin
|
|
ln -s sox $PKG/usr/bin/soxmix
|
|
popd
|
|
}
|
|
|