wok rev 22754

updated fdupes (1.6.1 -> 2.0.0)
author Hans-G?nter Theisgen
date Fri Jan 24 14:39:08 2020 +0100 (2020-01-24)
parents 3463bfcc3cb9
children 63fe29e9a1a3
files fdupes/receipt
line diff
     1.1 --- a/fdupes/receipt	Fri Jan 24 14:26:17 2020 +0100
     1.2 +++ b/fdupes/receipt	Fri Jan 24 14:39:08 2020 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="fdupes"
     1.7 -VERSION="1.6.1"
     1.8 +VERSION="2.0.0"
     1.9  CATEGORY="misc"
    1.10  SHORT_DESC="Identify or delete duplicate files in specified directories."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12 @@ -9,14 +9,17 @@
    1.13  WEB_SITE="https://github.com/adrianlopezroche/fdupes"
    1.14  
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WGET_URL="https://github.com/adrianlopezroche/$PACKAGE/archive/v$VERSION/$TARBALL"
    1.17 +WGET_URL="https://github.com/adrianlopezroche/$PACKAGE/releases/download/$VERSION/$TARBALL"
    1.18  
    1.19 -DEPENDS=""
    1.20 -BUILD_DEPENDS=""
    1.21 +DEPENDS="ncurses pcre2"
    1.22 +BUILD_DEPENDS="ncurses-dev pcre2-dev"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 +	./configure		\
    1.28 +		--prefix=/usr	\
    1.29 +		$CONFIGURE_ARGS &&
    1.30  	make
    1.31  }
    1.32  
    1.33 @@ -24,5 +27,5 @@
    1.34  genpkg_rules()
    1.35  {
    1.36  	mkdir -p $fs/usr/bin
    1.37 -	cp -a $src/fdupes $fs/usr/bin
    1.38 +	cp -a $src/fdupes	$fs/usr/bin
    1.39  }