wok rev 24642
updated hfsprescue (3.4 -> 3.5)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 09 17:03:53 2022 +0100 (2022-03-09) |
parents | 4795431532c1 |
children | 9290e8ef0479 |
files | hfsprescue/description.txt hfsprescue/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/hfsprescue/description.txt Wed Mar 09 17:03:53 2022 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +HFS+ (HFS Plus, Hierarchical File System Plus) is a file system, 1.5 +developed and used by AppleĀ®. 1.6 + 1.7 +Hfsprescue is a program to recover files from a HFS+ formatted 1.8 +partition. You can restore your files and directories even when 1.9 +it's not possible to mount it with your operating system. 1.10 +As side effect, the program also restores deleted files. 1.11 +Your files and directories will be recovered to the directory 1.12 +'restored/' in the directory where you start hfsprescue. 1.13 +The damaged HFS+ file system will be opened as read only to not 1.14 +change the data on the damaged drive. 1.15 +So you need enough space to copy out the files from the HFS+ 1.16 +file system. 1.17 + 1.18 +This program has no graphical user interface. You have to run it 1.19 +from the command line. 1.20 + 1.21 +Hfsprescue supports HFS+ compression (resource fork).
2.1 --- a/hfsprescue/receipt Wed Mar 09 16:50:15 2022 +0100 2.2 +++ b/hfsprescue/receipt Wed Mar 09 17:03:53 2022 +0100 2.3 @@ -1,16 +1,16 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="hfsprescue" 2.7 -VERSION="3.4" 2.8 +VERSION="3.5" 2.9 CATEGORY="base-system" 2.10 SHORT_DESC="HFS+ recovery tool." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL2" 2.13 +WEB_SITE="https://www.plop.at/en/hfsprescue.html" 2.14 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.15 -WEB_SITE="http://www.plop.at/en/hfsprescue.html" 2.16 -WGET_URL="http://download.plop.at/$PACKAGE/$TARBALL" 2.17 +WGET_URL="https://download.plop.at/$PACKAGE/$TARBALL" 2.18 2.19 -DEPENDS="gcc-lib-base libcrypto zlib" 2.20 +DEPENDS="libcrypto zlib" 2.21 BUILD_DEPENDS="openssl-dev" 2.22 2.23 # What is the latest version available today? 2.24 @@ -23,16 +23,17 @@ 2.25 # Rules to configure and make the package. 2.26 compile_rules() 2.27 { 2.28 - ./configure --prefix=/usr --infodir=/usr/share/info \ 2.29 - --mandir=/usr/share/man \ 2.30 - $CONFIGURE_ARGS && 2.31 + ./configure \ 2.32 + --prefix=/usr \ 2.33 + --infodir=/usr/share/info \ 2.34 + --mandir=/usr/share/man \ 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 }