# HG changeset patch # User Hans-G?nter Theisgen # Date 1645710500 -3600 # Node ID 7a94a8614d8b0cc11acaf38e3495ddbb401f7a60 # Parent 0db0ae7e04c2e49e55f7969e97d41789fb2b45c9 updated fdupes (2.0.0 -> 2.1.2) diff -r 0db0ae7e04c2 -r 7a94a8614d8b fdupes/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fdupes/description.txt Thu Feb 24 14:48:20 2022 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="fdupes" +VERSION="2.1.2" +CATEGORY="misc" +SHORT_DESC="Identify or delete duplicate files in specified directories." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="MIT" +WEB_SITE="https://github.com/adrianlopezroche/fdupes" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/adrianlopezroche/$PACKAGE/archive/v$VERSION.tar.gz" + +DEPENDS="ncursesw pcre2" +BUILD_DEPENDS="automake ncurses-dev pcre2-dev" + +# Rules to configure and make the package. +compile_rules() +{ + autoreconf -i && + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/fdupes $fs/usr/bin +} diff -r 0db0ae7e04c2 -r 7a94a8614d8b fdupes/receipt --- a/fdupes/receipt Thu Feb 24 14:25:23 2022 +0100 +++ b/fdupes/receipt Thu Feb 24 14:48:20 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="fdupes" -VERSION="2.0.0" +VERSION="2.1.2" CATEGORY="misc" SHORT_DESC="Identify or delete duplicate files in specified directories." MAINTAINER="pascal.bellard@slitaz.org" @@ -9,10 +9,10 @@ WEB_SITE="https://github.com/adrianlopezroche/fdupes" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="https://github.com/adrianlopezroche/$PACKAGE/releases/download/$VERSION/$TARBALL" +WGET_URL="https://github.com/adrianlopezroche/$PACKAGE/archive/v$VERSION.tar.gz" -DEPENDS="ncurses pcre2" -BUILD_DEPENDS="ncurses-dev pcre2-dev" +DEPENDS="ncursesw pcre2" +BUILD_DEPENDS="automake ncurses-dev pcre2-dev" current_version() { @@ -23,6 +23,7 @@ # Rules to configure and make the package. compile_rules() { + autoreconf -i && ./configure \ --prefix=/usr \ $CONFIGURE_ARGS &&