wok-next view findutils/receipt @ rev 21371

updated micropython again (1.0.1 -> 1.12)
author Hans-G?nter Theisgen
date Thu Apr 16 10:04:47 2020 +0100 (2020-04-16)
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 }