84 lines
2.7 KiB
Bash
84 lines
2.7 KiB
Bash
# Template file for 'coreutils'
|
|
pkgname=coreutils
|
|
version=8.25
|
|
revision=1
|
|
bootstrap=yes
|
|
makedepends="gmp-devel acl-devel libcap-devel"
|
|
replaces="chroot-coreutils>=0 coreutils-doc>=0"
|
|
short_desc="The GNU core utilities"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.gnu.org/software/coreutils"
|
|
license="GPL-3"
|
|
distfiles="${GNU_SITE}/$pkgname/$pkgname-$version.tar.xz"
|
|
checksum=31e67c057a5b32a582f26408c789e11c2e8d676593324849dcf5779296cdce87
|
|
|
|
if [ "$CHROOT_READY" ]; then
|
|
hostmakedepends="perl"
|
|
fi
|
|
|
|
alternatives="
|
|
hostname:hostname:/usr/bin/hostname-coreutils
|
|
hostname:hostname.1:/usr/share/man/man1/hostname-coreutils.1
|
|
"
|
|
|
|
pre_configure() {
|
|
# Build natively all utils for the host, we need this to generate
|
|
# the manpages via help2man.
|
|
if [ "$CROSS_BUILD" ]; then
|
|
CC=cc LD=ld AR=ar RANLIB=ranlib CFLAGS=-Os CXXFLAGS=-Os LDFLAGS= \
|
|
./configure --prefix=${wrksrc}/coreutils-${XBPS_MACHINE} \
|
|
--enable-install-program=arch,hostname \
|
|
--enable-no-install-program=kill,uptime
|
|
make ${makejobs}
|
|
make install
|
|
make distclean
|
|
fi
|
|
}
|
|
|
|
do_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
configure_args+=" fu_cv_sys_stat_statfs2_bsize=no
|
|
gl_cv_func_working_mkstemp=yes
|
|
gl_cv_func_working_acl_get_file=yes "
|
|
fi
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
# XXX syncfs() in src/sync.c expects a return value.
|
|
*-musl) configure_args+=" ac_cv_func_syncfs=no";;
|
|
esac
|
|
#
|
|
# Do not install kill: provided by util-linux.
|
|
# Do not install uptime: provided by procps-ng.
|
|
#
|
|
./configure ${configure_args} \
|
|
--enable-install-program=arch,hostname \
|
|
--enable-no-install-program=kill,uptime \
|
|
--disable-rpath
|
|
}
|
|
do_build() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
cp Makefile Makefile.orig
|
|
sed '/src_make_prime_list/d' Makefile.orig > Makefile
|
|
depbase=$(echo src/make-prime-list.o | sed 's|[^/]*$|.deps/&|;s|\.o$||');\
|
|
cc -std=gnu99 -I. -I./lib -Ilib -I./lib -Isrc -I./src \
|
|
-fdiagnostics-show-option -funit-at-a-time -g -O2 -MT \
|
|
src/make-prime-list.o -MD -MP -MF $depbase.Tpo -c -o src/make-prime-list.o \
|
|
src/make-prime-list.c &&
|
|
mv -f $depbase.Tpo $depbase.Po
|
|
cc -std=gnu99 -fdiagnostics-show-option -funit-at-a-time -g -O2 \
|
|
-Wl,--as-needed -o src/make-prime-list src/make-prime-list.o
|
|
cp Makefile Makefile.bak
|
|
sed -e '/hostname.1/d' Makefile.bak > Makefile
|
|
fi
|
|
make ${makejobs}
|
|
}
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install
|
|
if [ "$CROSS_BUILD" ]; then
|
|
mv ${wrksrc}/coreutils-${XBPS_MACHINE}/share/man \
|
|
${DESTDIR}/usr/share
|
|
# provided by procps-ng
|
|
rm -f ${DESTDIR}/usr/share/man/man1/{kill,uptime}.1
|
|
fi
|
|
mv ${DESTDIR}/usr/bin/hostname ${DESTDIR}/usr/bin/hostname-coreutils
|
|
mv ${DESTDIR}/usr/share/man/man1/hostname.1 ${DESTDIR}/usr/share/man/man1/hostname-coreutils.1
|
|
}
|