wok-next view 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
line source
1 # SliTaz package receipt v2.
3 PACKAGE="findutils"
4 VERSION="4.6.0"
5 CATEGORY="utilities"
6 SHORT_DESC="GNU utilities and tools to find/locate"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/findutils/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/findutils.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 DEPENDS_std="glibc-base slitaz-base-files"
16 TAGS_std="LFS"
18 compile_rules() {
19 # for glibc-2.28 (from LFS):
20 sed -i 's|IO_ftrylockfile|IO_EOF_SEEN|' gl/lib/*.c
21 sed -i '/unistd/a #include <sys/sysmacros.h>' gl/lib/mountlist.c
22 echo '#define _IO_IN_BACKUP 0x100' >> gl/lib/stdio-impl.h
24 ./configure \
25 --localstatedir=/var/lib/locate \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }