wok-next view findutils/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 90a5eb560fd6
children add40df8725d
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 compile_rules() {
16 ./configure \
17 --localstatedir=/var/lib/locate \
18 $CONFIGURE_ARGS &&
19 make &&
20 make install
21 }
23 genpkg_rules() {
24 copy @std
25 DEPENDS="glibc-base slitaz-base-files"
26 TAGS="LFS"
27 }