wok-current diff fdupes/description.txt @ rev 25470
Update some web_site
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Oct 07 10:48:59 2022 +0000 (2022-10-07) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/fdupes/description.txt Fri Oct 07 10:48:59 2022 +0000 1.3 @@ -0,0 +1,32 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="fdupes" 1.7 +VERSION="2.1.2" 1.8 +CATEGORY="misc" 1.9 +SHORT_DESC="Identify or delete duplicate files in specified directories." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="MIT" 1.12 +WEB_SITE="https://github.com/adrianlopezroche/fdupes" 1.13 + 1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 +WGET_URL="https://github.com/adrianlopezroche/$PACKAGE/archive/v$VERSION.tar.gz" 1.16 + 1.17 +DEPENDS="ncursesw pcre2" 1.18 +BUILD_DEPENDS="automake ncurses-dev pcre2-dev" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + autoreconf -i && 1.24 + ./configure \ 1.25 + --prefix=/usr \ 1.26 + $CONFIGURE_ARGS && 1.27 + make 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + mkdir -p $fs/usr/bin 1.34 + cp -a $src/fdupes $fs/usr/bin 1.35 +}