35 lines
954 B
Bash
35 lines
954 B
Bash
# Template file for 'diffutils'
|
|
pkgname=diffutils
|
|
version=3.10
|
|
revision=1
|
|
bootstrap=yes
|
|
build_style=gnu-configure
|
|
configure_args="gl_cv_func_gettimeofday_clobber=no gl_cv_func_tzset_clobber=no"
|
|
checkdepends="perl"
|
|
short_desc="GNU diff utilities"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://www.gnu.org/software/diffutils"
|
|
distfiles="${GNU_SITE}/diffutils/diffutils-${version}.tar.xz"
|
|
checksum=90e5e93cc724e4ebe12ede80df1634063c7a855692685919bfe60b556c9bd09e
|
|
|
|
CFLAGS="-D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64"
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = musl ]; then
|
|
export ac_cv_lib_error_at_line=no
|
|
export ac_cv_header_sys_cdefs_h=no
|
|
fi
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# Tell configure we have GNU getopt
|
|
configure_args+=" gl_cv_func_getopt_gnu=yes"
|
|
fi
|
|
|
|
pre_check() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl* )
|
|
# Disable locale tests that fail on musl
|
|
sed -i '/test-mbrtowc5.sh/d' gnulib-tests/Makefile ;;
|
|
esac
|
|
}
|