wok-current view rdfind/receipt @ rev 25728
Merge wok for both arch and few updates
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Thu Dec 05 08:39:45 2024 +0000 (5 weeks ago) |
parents | 9a6fd77a6ed5 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="rdfind"
4 VERSION="1.6.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Redundant data find - a program that finds duplicate files."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://rdfind.pauldreik.se"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}/$TARBALL"
14 DEPENDS="nettle"
15 BUILD_DEPENDS="nettle-dev"
17 HOST_ARCH="i486 x86_64"
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | \
22 sed '/^[0-9]/!d;s|&.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure \
29 --prefix=/usr \
30 --sysconfdir=/etc \
31 --localstatedir=/var \
32 $CONFIGURE_ARGS \
33 $ARCH_ARGS &&
34 make &&
35 make install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p $fs/usr
42 cp -a $install/usr/bin $fs/usr
43 }