27 lines
756 B
Bash
27 lines
756 B
Bash
# Template file for 'diffutils'
|
|
pkgname=diffutils
|
|
version=3.6
|
|
revision=3
|
|
bootstrap=yes
|
|
build_style=gnu-configure
|
|
configure_args="gl_cv_func_gettimeofday_clobber=no gl_cv_func_tzset_clobber=no"
|
|
short_desc="The GNU diff utilities"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.gnu.org/software/diffutils"
|
|
license="GPL-3"
|
|
distfiles="${GNU_SITE}/$pkgname/$pkgname-$version.tar.xz"
|
|
checksum=d621e8bdd4b573918c8145f7ae61817d1be9deb4c8d2328a65cea8e11d783bd6
|
|
|
|
if [ -n "$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
|
|
}
|