wok diff dcfldd/receipt @ rev 24482

updated diffutils (3.7 -> 3.8)
author Hans-G?nter Theisgen
date Fri Feb 18 14:45:09 2022 +0100 (2022-02-18)
parents 640a2eba2511
children 8f37db468deb
line diff
     1.1 --- a/dcfldd/receipt	Mon Feb 07 11:38:23 2022 +0000
     1.2 +++ b/dcfldd/receipt	Fri Feb 18 14:45:09 2022 +0100
     1.3 @@ -1,17 +1,18 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="dcfldd"
     1.7 -VERSION="1.3.4-1"
     1.8 +VERSION="1.7.1"
     1.9  CATEGORY="misc"
    1.10 -SHORT_DESC="Enhanced version dd with features useful for forensics and security."
    1.11 +SHORT_DESC="Enhanced dd with features useful for forensics and security."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="http://dcfldd.sourceforge.net/"
    1.15 +WEB_SITE="https://github.com/resurrecting-open-source-projects/dcfldd"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 
    1.19 +WGET_URL="https://github.com/resurrecting-open-source-projects/$PACKAGE/archive/v$VERSION.tar.gz"
    1.20  
    1.21  DEPENDS=""
    1.22 -BUILD_DEPENDS=""
    1.23 +BUILD_DEPENDS="automake"
    1.24  
    1.25  # What is the latest version available today?
    1.26  current_version()
    1.27 @@ -24,14 +25,16 @@
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.32 +	./autogen.sh &&
    1.33 +	./configure		\
    1.34 +		--prefix=/usr	\
    1.35 +		$CONFIGURE_ARGS &&
    1.36  	make &&
    1.37 -	make DESTDIR=$DESTDIR install
    1.38 +	make install DESTDIR=$DESTDIR
    1.39  }
    1.40  
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	mkdir -p $fs/usr
    1.45 -	cp -a $install/usr/bin  $fs/usr
    1.46 +	cook_copy_folders	bin
    1.47  }