Merge pull request #184 from vaites/mp3splt

Added mp3splt, libmp3splt, libmad and libid3tag packages
This commit is contained in:
Fredrik Fornwall 2016-04-14 01:34:24 +02:00
commit e35a44d7c1
4 changed files with 35 additions and 0 deletions

View File

@ -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

10
packages/libmad/build.sh Normal file
View File

@ -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
}

View File

@ -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"

13
packages/mp3splt/build.sh Normal file
View File

@ -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
}