termux-packages/packages/autoconf/build.sh

20 lines
792 B
Bash
Raw Normal View History

2018-05-25 12:38:52 +02:00
TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/autoconf/autoconf.html
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DESCRIPTION="Creator of shell scripts to configure source code packages"
2019-01-20 22:39:59 +01:00
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
2020-12-11 16:41:14 +01:00
TERMUX_PKG_VERSION=2.70
2020-12-11 17:09:13 +01:00
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/autoconf/autoconf-${TERMUX_PKG_VERSION}.tar.xz
2020-12-11 16:41:14 +01:00
TERMUX_PKG_SHA256=fa9e227860d9d845c0a07f63b88c8d7a2ae1aa2345fb619384bb8accc19fecc6
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DEPENDS="m4, make, perl"
TERMUX_PKG_PLATFORM_INDEPENDENT=true
2015-06-13 01:03:31 +02:00
termux_step_post_get_source() {
2015-06-13 01:03:31 +02:00
perl -p -i -e "s|/bin/sh|$TERMUX_PREFIX/bin/sh|" lib/*/*.m4
}
termux_step_post_massage() {
2015-06-13 01:03:31 +02:00
perl -p -i -e "s|/usr/bin/m4|$TERMUX_PREFIX/bin/m4|" bin/*
perl -p -i -e "s|CONFIG_SHELL-/bin/sh|CONFIG_SHELL-$TERMUX_PREFIX/bin/sh|" bin/autoconf
2015-06-13 01:03:31 +02:00
}