termux-packages/packages/coreutils/build.sh

22 lines
918 B
Bash
Raw Normal View History

2016-12-01 03:34:29 +01:00
TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/coreutils/
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DESCRIPTION="Basic file, shell and text manipulation utilities from the GNU project"
2018-07-02 10:24:06 +02:00
TERMUX_PKG_VERSION=8.30
TERMUX_PKG_REVISION=1
2018-07-02 10:24:06 +02:00
TERMUX_PKG_SHA256=e831b3a86091496cdba720411f9748de81507798f6130adeaef872d206e1b057
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/coreutils/coreutils-${TERMUX_PKG_VERSION}.tar.xz
2015-11-27 22:57:38 +01:00
# pinky has no usage on Android.
# df does not work either, let system binary prevail.
# $PREFIX/bin/env is provided by busybox for shebangs to work directly.
2016-12-01 03:34:29 +01:00
# users and who doesn't work and does not make much sense for Termux.
# uptime is provided by procps.
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
gl_cv_host_operating_system=Android
--enable-no-install-program=pinky,df,chroot,env,users,who,uptime
--enable-single-binary=symlinks
--without-gmp
"
2016-09-04 00:45:08 +02:00
termux_step_pre_configure() {
2017-12-28 04:58:10 +01:00
CPPFLAGS+=" -DDEFAULT_TMPDIR=\\\"$TERMUX_PREFIX/tmp\\\""
2016-09-04 00:45:08 +02:00
}