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"
|
2019-01-20 22:39:59 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
2019-04-24 11:34:05 +02:00
|
|
|
TERMUX_PKG_VERSION=8.31
|
2019-09-19 19:00:14 +02:00
|
|
|
TERMUX_PKG_REVISION=8
|
2016-09-25 00:42:39 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/coreutils/coreutils-${TERMUX_PKG_VERSION}.tar.xz
|
2019-07-22 00:51:28 +02:00
|
|
|
TERMUX_PKG_SHA256=ff7a9c918edce6b4f4b2725e3f9b37b0c4d193531cac49a48b56c4d0d3a9e9fd
|
2019-09-19 18:56:35 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libandroid-support, libgmp, libiconv"
|
2019-09-19 18:54:19 +02:00
|
|
|
TERMUX_PKG_BREAKS="chroot, busybox (<< 1.30.1-4)"
|
|
|
|
TERMUX_PKG_REPLACES="chroot, busybox (<< 1.30.1-4)"
|
2019-08-12 17:28:41 +02:00
|
|
|
TERMUX_PKG_ESSENTIAL=true
|
2019-05-05 16:45:07 +02:00
|
|
|
|
2015-11-27 22:57:38 +01:00
|
|
|
# pinky has no usage on Android.
|
|
|
|
# df does not work either, let system binary prevail.
|
2016-05-03 00:40:17 +02:00
|
|
|
# $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.
|
2017-07-02 11:37:59 +02:00
|
|
|
# uptime is provided by procps.
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
|
|
gl_cv_host_operating_system=Android
|
2019-04-24 11:34:05 +02:00
|
|
|
ac_cv_func_getpass=yes
|
2018-07-03 11:26:07 +02:00
|
|
|
--disable-xattr
|
2019-09-19 18:54:19 +02:00
|
|
|
--enable-no-install-program=pinky,df,users,who,uptime
|
2017-07-02 11:37:59 +02:00
|
|
|
--enable-single-binary=symlinks
|
2019-09-19 18:56:35 +02:00
|
|
|
--with-gmp
|
2017-07-02 11:37:59 +02:00
|
|
|
"
|
2016-04-16 08:53:01 +02:00
|
|
|
|
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\\\""
|
2019-04-24 11:34:05 +02:00
|
|
|
CPPFLAGS+=" -D__USE_FORTIFY_LEVEL=0"
|
2019-08-10 19:22:30 +02:00
|
|
|
|
|
|
|
# On device build is unsupported as it removes utility 'ln' (and maybe
|
|
|
|
# something else) in the installation process.
|
2019-08-12 17:28:41 +02:00
|
|
|
if $TERMUX_ON_DEVICE_BUILD; then
|
2019-08-10 19:22:30 +02:00
|
|
|
termux_error_exit "Package '$TERMUX_PKG_NAME' is not safe for on-device builds."
|
|
|
|
fi
|
2016-09-04 00:45:08 +02:00
|
|
|
}
|