b0526376bf5a1d92497a69a76005d4560c0cd1b8
[termux-packages] / packages / coreutils / build.sh
1 TERMUX_PKG_HOMEPAGE=http://www.gnu.org/software/coreutils/
2 TERMUX_PKG_DESCRIPTION="Basic file, shell and text manipulation utilities from the GNU project"
3 TERMUX_PKG_VERSION=8.25
4 TERMUX_PKG_BUILD_REVISION=6
5 TERMUX_PKG_SRCURL=http://ftp.gnu.org/gnu/coreutils/coreutils-${TERMUX_PKG_VERSION}.tar.xz
6 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_func_mkfifo=yes gl_cv_host_operating_system=Android --without-gmp --enable-single-binary=symlinks ac_cv_func_endpwent=no"
7 # pinky has no usage on Android.
8 # realpath has permission denied problem with relative paths, let busybox version prevail.
9 # df does not work either, let system binary prevail.
10 # $PREFIX/bin/env is provided by busybox for shebangs to work directly.
11 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --enable-no-install-program=pinky,realpath,df,chroot,env"
12 TERMUX_PKG_EXTRA_HOSTBUILD_CONFIGURE_ARGS="$TERMUX_PKG_EXTRA_CONFIGURE_ARGS"
13 TERMUX_PKG_BUILD_IN_SRC=yes
14 # Host build for man pages generated by help2man, see makefile.patch:
15 TERMUX_PKG_HOSTBUILD=yes
16
17 termux_step_pre_configure() {
18 CPPFLAGS+=" -DDEFAULT_TMPDIR=\\\"$TERMUX_PREFIX/tmp\\\""
19 }