wok rev 24543

updated fdupes (2.0.0 -> 2.1.2)
author Hans-G?nter Theisgen
date Thu Feb 24 14:48:20 2022 +0100 (2022-02-24)
parents 0db0ae7e04c2
children 63d5c5001e68
files fdupes/description.txt fdupes/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/fdupes/description.txt	Thu Feb 24 14:48:20 2022 +0100
     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 +}
     2.1 --- a/fdupes/receipt	Thu Feb 24 14:25:23 2022 +0100
     2.2 +++ b/fdupes/receipt	Thu Feb 24 14:48:20 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="fdupes"
     2.7 -VERSION="2.0.0"
     2.8 +VERSION="2.1.2"
     2.9  CATEGORY="misc"
    2.10  SHORT_DESC="Identify or delete duplicate files in specified directories."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12 @@ -9,10 +9,10 @@
    2.13  WEB_SITE="https://github.com/adrianlopezroche/fdupes"
    2.14  
    2.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.16 -WGET_URL="https://github.com/adrianlopezroche/$PACKAGE/releases/download/$VERSION/$TARBALL"
    2.17 +WGET_URL="https://github.com/adrianlopezroche/$PACKAGE/archive/v$VERSION.tar.gz"
    2.18  
    2.19 -DEPENDS="ncurses pcre2"
    2.20 -BUILD_DEPENDS="ncurses-dev pcre2-dev"
    2.21 +DEPENDS="ncursesw pcre2"
    2.22 +BUILD_DEPENDS="automake ncurses-dev pcre2-dev"
    2.23  
    2.24  current_version()
    2.25  {
    2.26 @@ -23,6 +23,7 @@
    2.27  # Rules to configure and make the package.
    2.28  compile_rules()
    2.29  {
    2.30 +	autoreconf -i &&
    2.31  	./configure		\
    2.32  		--prefix=/usr	\
    2.33  		$CONFIGURE_ARGS &&