37375312b9
In issue https://github.com/termux/termux-packages/issues/6160 I have found that community repo "its-pointless.github.io" specifies us as maintainer for its packages. This is NOT TRUE and potentially misleads people using these packages. Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral and not specify maintainer. So all packages now have to override it to the correct value. [skip ci] %ci:no-build
23 lines
751 B
Bash
23 lines
751 B
Bash
TERMUX_PKG_HOMEPAGE=http://www.underbit.com/products/mad/
|
|
TERMUX_PKG_DESCRIPTION="MAD is a high-quality MPEG audio decoder"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=0.15.1b
|
|
TERMUX_PKG_REVISION=2
|
|
TERMUX_PKG_SRCURL=ftp://ftp.mars.org/pub/mpeg/libmad-${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=bbfac3ed6bfbc2823d3775ebb931087371e142bb0e9bb1bee51a76a6e0078690
|
|
TERMUX_PKG_BREAKS="libmad-dev"
|
|
TERMUX_PKG_REPLACES="libmad-dev"
|
|
|
|
termux_step_pre_configure() {
|
|
if [ $TERMUX_ARCH = arm ]; then
|
|
# See https://www.mars.org/pipermail/mad-dev/2013-July/001433.html
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --enable-fpm=default"
|
|
fi
|
|
}
|
|
|
|
termux_post_configure() {
|
|
cd $TERMUX_PKG_SRCDIR
|
|
sed -i -e 's/-force-mem//g' Makefile
|
|
}
|