wok-next annotate findutils/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents d5aab818505e
children 3753ae384ada
rev   line source
al@19743 1 # SliTaz package receipt v2.
pankso@839 2
pankso@839 3 PACKAGE="findutils"
al@19561 4 VERSION="4.6.0"
pankso@839 5 CATEGORY="utilities"
al@19743 6 SHORT_DESC="GNU utilities and tools to find/locate"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
al@19561 9 WEB_SITE="https://www.gnu.org/software/findutils/"
al@20436 10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/findutils.html"
al@19561 11
pankso@839 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@839 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@839 14
al@21062 15 DEPENDS_std="glibc-base slitaz-base-files"
al@21062 16 TAGS_std="LFS"
al@21062 17
al@20436 18 compile_rules() {
al@21062 19 # for glibc-2.28 (from LFS):
al@21062 20 sed -i 's|IO_ftrylockfile|IO_EOF_SEEN|' gl/lib/*.c
al@21062 21 sed -i '/unistd/a #include <sys/sysmacros.h>' gl/lib/mountlist.c
al@21062 22 echo '#define _IO_IN_BACKUP 0x100' >> gl/lib/stdio-impl.h
al@21062 23
pankso@839 24 ./configure \
al@19561 25 --localstatedir=/var/lib/locate \
pankso@2741 26 $CONFIGURE_ARGS &&
pankso@2741 27 make &&
al@19561 28 make install
pankso@839 29 }