wok rev 24533
updated f3 (7.2 -> 8.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Feb 23 11:14:10 2022 +0100 (2022-02-23) |
parents | 4b9f7978be6f |
children | 6a78d7832b6f |
files | f3/description.txt f3/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/f3/description.txt Wed Feb 23 11:14:10 2022 +0100 1.3 @@ -0,0 +1,6 @@ 1.4 +F3 is a simple tool that tests flash cards capacity and performance 1.5 +to see if they live up to claimed specifications. 1.6 +It fills the device with pseudorandom data and then checks if it 1.7 +returns the same on reading. 1.8 + 1.9 +F3 stands for Fight Flash Fraud, or Fight Fake Flash.
2.1 --- a/f3/receipt Wed Feb 23 10:55:02 2022 +0100 2.2 +++ b/f3/receipt Wed Feb 23 11:14:10 2022 +0100 2.3 @@ -1,15 +1,15 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="f3" 2.7 -VERSION="7.2" 2.8 +VERSION="8.0" 2.9 CATEGORY="utilities" 2.10 SHORT_DESC="An alternative to h2testw." 2.11 MAINTAINER="paul@slitaz.org" 2.12 LICENSE="GPL3" 2.13 -WEB_SITE="https://github.com/AltraMayor/f3" 2.14 +WEB_SITE="http://oss.digirati.com.br/f3/" 2.15 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WGET_URL="https://github.com/AltraMayor/f3/archive/v$VERSION.tar.gz" 2.18 +WGET_URL="https://github.com/AltraMayor/$PACKAGE/archive/v$VERSION.tar.gz" 2.19 2.20 DEPENDS="" 2.21 BUILD_DEPENDS="" 2.22 @@ -23,6 +23,8 @@ 2.23 # Rules to configure and make the package. 2.24 compile_rules() 2.25 { 2.26 + export LDFLAGS="$LDFLAGS -lrt" 2.27 + 2.28 make PREFIX=/usr && 2.29 make install PREFIX=/usr 2.30 } 2.31 @@ -30,6 +32,5 @@ 2.32 # Rules to gen a SliTaz package suitable for Tazpkg. 2.33 genpkg_rules() 2.34 { 2.35 - mkdir -p $fs/usr 2.36 - cp -a $install/usr/bin $fs/usr 2.37 + cook_copy_folders bin 2.38 }