termux-packages/packages/findutils/build.sh

33 lines
1.0 KiB
Bash
Raw Normal View History

2018-05-25 12:38:52 +02:00
TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/findutils/
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DESCRIPTION="Utilities to find files meeting specified criteria and perform various actions on the files which are found"
2019-01-20 22:39:59 +01:00
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
2022-03-13 08:02:48 +01:00
TERMUX_PKG_VERSION=4.9.0
2022-03-24 13:50:52 +01:00
TERMUX_PKG_REVISION=1
2019-09-08 20:36:04 +02:00
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/findutils/findutils-${TERMUX_PKG_VERSION}.tar.xz
2022-03-13 08:02:48 +01:00
TERMUX_PKG_SHA256=a2bfb8c09d436770edc59f50fa483e785b161a3b7b9d547573cb08065fd462fe
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DEPENDS="libandroid-support"
TERMUX_PKG_ESSENTIAL=true
TERMUX_PKG_GROUPS="base-devel"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
2022-03-24 13:50:52 +01:00
gl_cv_func_fflush_stdin=no
SORT_SUPPORTS_Z=yes
SORT=$TERMUX_PREFIX/bin/sort
"
# Remove locale and updatedb which in Termux is provided by mlocate:
TERMUX_PKG_RM_AFTER_INSTALL="
bin/locate
bin/updatedb
share/man/man1/locate.1
share/man/man1/updatedb.1
share/man/man5/locatedb.5
"
2017-02-20 04:33:51 +01:00
termux_step_pre_configure() {
# This is needed for find to implement support for the
# -fstype parameter by parsing /proc/self/mountinfo:
CPPFLAGS+=" -DMOUNTED_GETMNTENT1=1"
}