summaryrefslogtreecommitdiff
path: root/manualPorts/sox/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'manualPorts/sox/Pkgfile')
-rw-r--r--manualPorts/sox/Pkgfile22
1 files changed, 22 insertions, 0 deletions
diff --git a/manualPorts/sox/Pkgfile b/manualPorts/sox/Pkgfile
new file mode 100644
index 0000000..2533f82
--- /dev/null
+++ b/manualPorts/sox/Pkgfile
@@ -0,0 +1,22 @@
+# Description: Audio processing on the console, aka "SOund eXchange"
+# URL: http://sox.sourceforge.net/
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Depends on: libmad
+
+name=sox
+version=14.4.2
+release=2
+source=(http://sourceforge.net/projects/$name/files/$name/$version/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/usr \
+ --mandir=/usr/share/man \
+ --with-lame \
+ --with-mad
+
+ make
+ make DESTDIR=$PKG install
+}