wok rev 24471
updated dcfldd (1.3.4-1 -> 1.7.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Feb 17 15:14:14 2022 +0100 (2022-02-17) |
parents | b547eecf9b74 |
children | 5dbf835a322f |
files | dcfldd/description.txt dcfldd/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dcfldd/description.txt Thu Feb 17 15:14:14 2022 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +Dcfldd is a modified version of GNU dd. 1.5 +The major features added are: 1.6 + 1.7 +* Hashing on-the-fly: dcfldd can hash the input data as it is 1.8 + being transferred, helping to ensure data integrity. 1.9 +* Status output: dcfldd can update the user of its progress in 1.10 + terms of the amount of data transferred and how much longer 1.11 + operation will take. 1.12 +* Flexible disk wipes: dcfldd can be used to wipe disks quickly 1.13 + and with a known pattern if desired. 1.14 +* Image/wipe verify: dcfldd can verify that a target drive is a 1.15 + bit-for-bit match of the specified input file or pattern. 1.16 +* Multiple outputs: dcfldd can output to multiple files or disks 1.17 + at the same time. 1.18 +* Split output: dcfldd can split output to multiple files with 1.19 + more configurability than the split command. 1.20 +* Piped output and logs: dcfldd can send all its log data and 1.21 + output to commands as well as files natively.
2.1 --- a/dcfldd/receipt Thu Feb 17 14:54:20 2022 +0100 2.2 +++ b/dcfldd/receipt Thu Feb 17 15:14:14 2022 +0100 2.3 @@ -1,17 +1,18 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="dcfldd" 2.7 -VERSION="1.3.4-1" 2.8 +VERSION="1.7.1" 2.9 CATEGORY="misc" 2.10 -SHORT_DESC="Enhanced version dd with features useful for forensics and security." 2.11 +SHORT_DESC="Enhanced dd with features useful for forensics and security." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="GPL2" 2.14 -WEB_SITE="http://dcfldd.sourceforge.net/" 2.15 +WEB_SITE="https://github.com/resurrecting-open-source-projects/dcfldd" 2.16 + 2.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.18 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 2.19 +WGET_URL="https://github.com/resurrecting-open-source-projects/$PACKAGE/archive/v$VERSION.tar.gz" 2.20 2.21 DEPENDS="" 2.22 -BUILD_DEPENDS="" 2.23 +BUILD_DEPENDS="automake" 2.24 2.25 # What is the latest version available today? 2.26 current_version() 2.27 @@ -24,14 +25,16 @@ 2.28 # Rules to configure and make the package. 2.29 compile_rules() 2.30 { 2.31 - ./configure --prefix=/usr $CONFIGURE_ARGS && 2.32 + ./autogen.sh && 2.33 + ./configure \ 2.34 + --prefix=/usr \ 2.35 + $CONFIGURE_ARGS && 2.36 make && 2.37 - make DESTDIR=$DESTDIR install 2.38 + make install DESTDIR=$DESTDIR 2.39 } 2.40 2.41 # Rules to gen a SliTaz package suitable for Tazpkg. 2.42 genpkg_rules() 2.43 { 2.44 - mkdir -p $fs/usr 2.45 - cp -a $install/usr/bin $fs/usr 2.46 + cook_copy_folders bin 2.47 }