wok annotate fdupes/description.txt @ rev 24985

Add python-future
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 10 07:46:58 2022 +0000 (24 months ago)
parents
children
rev   line source
Hans-G?nter@24543 1 # SliTaz package receipt.
Hans-G?nter@24543 2
Hans-G?nter@24543 3 PACKAGE="fdupes"
Hans-G?nter@24543 4 VERSION="2.1.2"
Hans-G?nter@24543 5 CATEGORY="misc"
Hans-G?nter@24543 6 SHORT_DESC="Identify or delete duplicate files in specified directories."
Hans-G?nter@24543 7 MAINTAINER="pascal.bellard@slitaz.org"
Hans-G?nter@24543 8 LICENSE="MIT"
Hans-G?nter@24543 9 WEB_SITE="https://github.com/adrianlopezroche/fdupes"
Hans-G?nter@24543 10
Hans-G?nter@24543 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@24543 12 WGET_URL="https://github.com/adrianlopezroche/$PACKAGE/archive/v$VERSION.tar.gz"
Hans-G?nter@24543 13
Hans-G?nter@24543 14 DEPENDS="ncursesw pcre2"
Hans-G?nter@24543 15 BUILD_DEPENDS="automake ncurses-dev pcre2-dev"
Hans-G?nter@24543 16
Hans-G?nter@24543 17 # Rules to configure and make the package.
Hans-G?nter@24543 18 compile_rules()
Hans-G?nter@24543 19 {
Hans-G?nter@24543 20 autoreconf -i &&
Hans-G?nter@24543 21 ./configure \
Hans-G?nter@24543 22 --prefix=/usr \
Hans-G?nter@24543 23 $CONFIGURE_ARGS &&
Hans-G?nter@24543 24 make
Hans-G?nter@24543 25 }
Hans-G?nter@24543 26
Hans-G?nter@24543 27 # Rules to gen a SliTaz package suitable for Tazpkg.
Hans-G?nter@24543 28 genpkg_rules()
Hans-G?nter@24543 29 {
Hans-G?nter@24543 30 mkdir -p $fs/usr/bin
Hans-G?nter@24543 31 cp -a $src/fdupes $fs/usr/bin
Hans-G?nter@24543 32 }