# HG changeset patch # User Hans-G?nter Theisgen # Date 1645107254 -3600 # Node ID d31cf85c8537791dd58cf27763718f5e717bb845 # Parent b547eecf9b7492aba0fa5aecc6625a0be4b3b4f6 updated dcfldd (1.3.4-1 -> 1.7.1) diff -r b547eecf9b74 -r d31cf85c8537 dcfldd/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dcfldd/description.txt Thu Feb 17 15:14:14 2022 +0100 @@ -0,0 +1,18 @@ +Dcfldd is a modified version of GNU dd. +The major features added are: + +* Hashing on-the-fly: dcfldd can hash the input data as it is + being transferred, helping to ensure data integrity. +* Status output: dcfldd can update the user of its progress in + terms of the amount of data transferred and how much longer + operation will take. +* Flexible disk wipes: dcfldd can be used to wipe disks quickly + and with a known pattern if desired. +* Image/wipe verify: dcfldd can verify that a target drive is a + bit-for-bit match of the specified input file or pattern. +* Multiple outputs: dcfldd can output to multiple files or disks + at the same time. +* Split output: dcfldd can split output to multiple files with + more configurability than the split command. +* Piped output and logs: dcfldd can send all its log data and + output to commands as well as files natively. diff -r b547eecf9b74 -r d31cf85c8537 dcfldd/receipt --- a/dcfldd/receipt Thu Feb 17 14:54:20 2022 +0100 +++ b/dcfldd/receipt Thu Feb 17 15:14:14 2022 +0100 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="dcfldd" -VERSION="1.3.4-1" +VERSION="1.7.1" CATEGORY="misc" -SHORT_DESC="Enhanced version dd with features useful for forensics and security." +SHORT_DESC="Enhanced dd with features useful for forensics and security." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://dcfldd.sourceforge.net/" +WEB_SITE="https://github.com/resurrecting-open-source-projects/dcfldd" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +WGET_URL="https://github.com/resurrecting-open-source-projects/$PACKAGE/archive/v$VERSION.tar.gz" DEPENDS="" -BUILD_DEPENDS="" +BUILD_DEPENDS="automake" # What is the latest version available today? current_version() @@ -24,14 +25,16 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr $CONFIGURE_ARGS && + ./autogen.sh && + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin }