sox: initial import

This commit is contained in:
Simon Gloner 2006-04-10 13:25:44 +00:00
parent 09a853e056
commit 2a7192c34d
3 changed files with 32 additions and 0 deletions

11
sox/.footprint Normal file
View File

@ -0,0 +1,11 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/play
lrwxrwxrwx root/root usr/bin/rec -> play
-rwxr-xr-x root/root usr/bin/sox
-rwxr-xr-x root/root usr/bin/soxmix
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/sox.1.gz
-rw-r--r-- root/root usr/man/man1/soxexam.1.gz
lrwxrwxrwx root/root usr/man/man1/soxmix.1.gz -> sox.1.gz

1
sox/.md5sum Normal file
View File

@ -0,0 +1 @@
a463ef9ff2ec00007a3a42ced9572b03 sox-12.17.9.tar.gz

20
sox/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# Description: audio conversion tools
# URL: http://sox.sourceforge.net/
# Maintainer: Simon Gloßner, viper at hometux dot de
# Packager: Martin Opel, mo at obbl-net dot de
name=sox
version=12.17.9
release=1
source=(http://dl.sourceforge.net/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make prefix=$PKG/usr install
rm $PKG/usr/bin/rec
( cd $PKG/usr/bin; ln -s play rec )
}