# HG changeset patch # User Hans-G?nter Theisgen # Date 1646841833 -3600 # Node ID 0ba7891c704302efc1592887d5e7bc78726109aa # Parent 4795431532c15ec33fc0e3489f60c10182d3c103 updated hfsprescue (3.4 -> 3.5) diff -r 4795431532c1 -r 0ba7891c7043 hfsprescue/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hfsprescue/description.txt Wed Mar 09 17:03:53 2022 +0100 @@ -0,0 +1,18 @@ +HFS+ (HFS Plus, Hierarchical File System Plus) is a file system, +developed and used by AppleĀ®. + +Hfsprescue is a program to recover files from a HFS+ formatted +partition. You can restore your files and directories even when +it's not possible to mount it with your operating system. +As side effect, the program also restores deleted files. +Your files and directories will be recovered to the directory +'restored/' in the directory where you start hfsprescue. +The damaged HFS+ file system will be opened as read only to not +change the data on the damaged drive. +So you need enough space to copy out the files from the HFS+ +file system. + +This program has no graphical user interface. You have to run it +from the command line. + +Hfsprescue supports HFS+ compression (resource fork). diff -r 4795431532c1 -r 0ba7891c7043 hfsprescue/receipt --- a/hfsprescue/receipt Wed Mar 09 16:50:15 2022 +0100 +++ b/hfsprescue/receipt Wed Mar 09 17:03:53 2022 +0100 @@ -1,16 +1,16 @@ # SliTaz package receipt. PACKAGE="hfsprescue" -VERSION="3.4" +VERSION="3.5" CATEGORY="base-system" SHORT_DESC="HFS+ recovery tool." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://www.plop.at/en/hfsprescue.html" TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.plop.at/en/hfsprescue.html" -WGET_URL="http://download.plop.at/$PACKAGE/$TARBALL" +WGET_URL="https://download.plop.at/$PACKAGE/$TARBALL" -DEPENDS="gcc-lib-base libcrypto zlib" +DEPENDS="libcrypto zlib" BUILD_DEPENDS="openssl-dev" # What is the latest version available today? @@ -23,16 +23,17 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $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 }