summaryrefslogtreecommitdiff
path: root/manualPorts/sox/Pkgfile
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-05-27 10:13:52 +0200
committerErich Eckner <git@eckner.net>2018-05-27 10:13:52 +0200
commit14a8f5d3c7889f2046a008b1b1dc29f485ebb359 (patch)
tree644ebb60f7155dd5c139d233857684fbcd8546e6 /manualPorts/sox/Pkgfile
downloadcrux-ports-14a8f5d3c7889f2046a008b1b1dc29f485ebb359.tar.xz
initial commit
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
+}