wok diff fdupes/receipt @ rev 23426
updated php packages (7.3.16 -> 7.4.4)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 01 15:23:29 2020 +0100 (2020-04-01) |
parents | e7058f1b18c6 |
children | 5ea0ce1cecc0 |
line diff
1.1 --- a/fdupes/receipt Thu Feb 28 17:10:02 2019 +0100 1.2 +++ b/fdupes/receipt Wed Apr 01 15:23:29 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 }