summaryrefslogtreecommitdiff
path: root/manualPorts/sox/Pkgfile
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2021-08-04 21:44:32 +0200
committerErich Eckner <git@eckner.net>2021-08-04 21:44:32 +0200
commitaaa0413132b4d6607aa78cf53e93712d9d08e82b (patch)
treeae84d189ee92c27cf43399e0e49c3d6a1730acc5 /manualPorts/sox/Pkgfile
parent2e548639cc71e96c076b615f3c6547517b2b647c (diff)
downloadcrux-ports-aaa0413132b4d6607aa78cf53e93712d9d08e82b.tar.xz
Revert "sox removed - exists upstream"
This reverts commit eb0be7544bf60dc58aff238278aa094c1f2b15d1.
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
+}