wok rev 24575

updated fsarchiver (0.8.5 -> 0.8.6)
author Hans-G?nter Theisgen
date Sun Feb 27 10:36:21 2022 +0100 (2022-02-27)
parents 4bcc87e4326a
children d5468918986e
files fsarchiver/description.txt fsarchiver/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/fsarchiver/description.txt	Sun Feb 27 10:36:21 2022 +0100
     1.3 @@ -0,0 +1,9 @@
     1.4 +FSArchiver is a system tool that allows you to save the contents
     1.5 +of a file-system to a compressed archive file.
     1.6 +The file-system can be restored on a partition which has a different
     1.7 +size and it can be restored on a different file-system.
     1.8 +Unlike tar or dar, FSArchiver also creates the file-system when it
     1.9 +extracts the data to partitions.
    1.10 +Everything is checksummed in the archive in order to protect the data.
    1.11 +If the archive is corrupt, you just loose the current file, not the
    1.12 +whole archive.
     2.1 --- a/fsarchiver/receipt	Sun Feb 27 07:58:48 2022 +0100
     2.2 +++ b/fsarchiver/receipt	Sun Feb 27 10:36:21 2022 +0100
     2.3 @@ -1,21 +1,22 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="fsarchiver"
     2.7 -VERSION="0.8.5"
     2.8 +VERSION="0.8.6"
     2.9  CATEGORY="utilities"
    2.10 +TAGS="compression filesystem archive backup"
    2.11  MAINTAINER="jozee@slitaz.org"
    2.12  LICENSE="GPL2"
    2.13 -SHORT_DESC="A safe and flexible file-system backup and deployment tool"
    2.14 +SHORT_DESC="A safe and flexible file-system backup and deployment tool."
    2.15  WEB_SITE="https://www.fsarchiver.org/"
    2.16 +
    2.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.18 -WGET_URL="https://github.com/fdupoux/fsarchiver/releases/download/$VERSION/$TARBALL"
    2.19 -TAGS="compression filesystem archive backup"
    2.20 +WGET_URL="https://github.com/fdupoux/$PACKAGE/releases/download/$VERSION/$TARBALL"
    2.21  
    2.22 -DEPENDS="bzip2 e2fsprogs lzo xz libgcrypt liblzma util-linux-blkid \
    2.23 -libcomerr3 zlib lz4-lib zstd"
    2.24 -BUILD_DEPENDS="bzip2-dev e2fsprogs-dev libgcrypt-dev lzo-dev liblzma-dev \
    2.25 -util-linux-blkid-dev attr-dev util-linux-uuid-dev zlib-dev pkg-config \
    2.26 -lz4-dev zstd-dev"
    2.27 +DEPENDS="bzip2 e2fsprogs libcomerr3 libgcrypt liblzma lzo lz4-lib
    2.28 +	util-linux-blkid xz zlib zstd"
    2.29 +BUILD_DEPENDS="attr-dev bzip2-dev e2fsprogs-dev libgcrypt-dev liblzma-dev
    2.30 +	lz4-dev lzo-dev pkg-config util-linux-blkid-dev util-linux-uuid-dev
    2.31 +	zlib-dev zstd-dev"
    2.32  
    2.33  current_version()
    2.34  {
    2.35 @@ -26,15 +27,15 @@
    2.36  # Rules to configure and make the package.
    2.37  compile_rules()
    2.38  {
    2.39 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    2.40 +	./configure		\
    2.41 +		--prefix=/usr	\
    2.42 +		$CONFIGURE_ARGS &&
    2.43  	make &&
    2.44 -	make DESTDIR="$DESTDIR" install
    2.45 +	make install DESTDIR="$DESTDIR"
    2.46  }
    2.47  	
    2.48  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.49  genpkg_rules()
    2.50  {
    2.51 -	mkdir -p $fs/usr
    2.52 -	cp -a $install/usr/sbin $fs/usr
    2.53 -	
    2.54 +	cook_copy_folders	sbin
    2.55  }