chiark / gitweb /
Added mp3splt, libmp3splt, libmad and libid3tag packages
authorDavid Martínez <contacto@davidmartinez.net>
Sat, 26 Mar 2016 22:31:26 +0000 (23:31 +0100)
committerDavid Martínez <contacto@davidmartinez.net>
Sun, 27 Mar 2016 07:15:32 +0000 (09:15 +0200)
packages/libid3tag/build.sh [new file with mode: 0644]
packages/libmad/build.sh [new file with mode: 0644]
packages/libmp3splt/build.sh [new file with mode: 0644]
packages/mp3splt/build.sh [new file with mode: 0644]

diff --git a/packages/libid3tag/build.sh b/packages/libid3tag/build.sh
new file mode 100644 (file)
index 0000000..e889951
--- /dev/null
@@ -0,0 +1,5 @@
+TERMUX_PKG_HOMEPAGE=http://www.underbit.com/products/mad/
+TERMUX_PKG_DESCRIPTION="MAD ID3 tag manipulation library"
+TERMUX_PKG_VERSION=0.15.1b
+TERMUX_PKG_BUILD_REVISION=1
+TERMUX_PKG_SRCURL=ftp://ftp.mars.org/pub/mpeg/libid3tag-${TERMUX_PKG_VERSION}.tar.gz
diff --git a/packages/libmad/build.sh b/packages/libmad/build.sh
new file mode 100644 (file)
index 0000000..c86738f
--- /dev/null
@@ -0,0 +1,10 @@
+TERMUX_PKG_HOMEPAGE=http://www.underbit.com/products/mad/
+TERMUX_PKG_DESCRIPTION="MAD is a high-quality MPEG audio decoder"
+TERMUX_PKG_VERSION=0.15.1b
+TERMUX_PKG_BUILD_REVISION=1
+TERMUX_PKG_SRCURL=ftp://ftp.mars.org/pub/mpeg/libmad-${TERMUX_PKG_VERSION}.tar.gz
+
+termux_post_configure() {
+       cd $TERMUX_PKG_SRCDIR
+       sed -i -e 's/-force-mem//g' Makefile
+}
diff --git a/packages/libmp3splt/build.sh b/packages/libmp3splt/build.sh
new file mode 100644 (file)
index 0000000..e733ed2
--- /dev/null
@@ -0,0 +1,7 @@
+TERMUX_PKG_HOMEPAGE=http://mp3splt.sourceforge.net
+TERMUX_PKG_DESCRIPTION="Mp3Splt-project is a utility to split mp3, ogg vorbis and native FLAC files selecting a begin and an end time position, without decoding"
+TERMUX_PKG_VERSION=0.9.2
+TERMUX_PKG_BUILD_REVISION=1
+TERMUX_PKG_SRCURL=http://prdownloads.sourceforge.net/mp3splt/libmp3splt-${TERMUX_PKG_VERSION}.tar.gz
+TERMUX_PKG_DEPENDS="libmad, libid3tag, pcre"
+TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-flac --disable-ogg --disable-cutter"
diff --git a/packages/mp3splt/build.sh b/packages/mp3splt/build.sh
new file mode 100644 (file)
index 0000000..09e8680
--- /dev/null
@@ -0,0 +1,13 @@
+TERMUX_PKG_HOMEPAGE=http://mp3splt.sourceforge.net
+TERMUX_PKG_DESCRIPTION="Mp3Splt-project is a utility to split mp3, ogg vorbis and native FLAC files selecting a begin and an end time position, without decoding"
+TERMUX_PKG_VERSION=2.6.2
+TERMUX_PKG_BUILD_REVISION=1
+TERMUX_PKG_SRCURL=http://prdownloads.sourceforge.net/mp3splt/mp3splt-${TERMUX_PKG_VERSION}.tar.gz
+TERMUX_PKG_DEPENDS="libmp3splt"
+TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--mandir=$TERMUX_PREFIX/share/man"
+
+termux_step_post_configure() {
+       cd $TERMUX_PKG_SRCDIR/src
+       sed -i -e 's/BEOS/ANDROID/g' freedb.c
+       touch langinfo.h
+}