wok rev 24463

updated dar (2.6.7 -> 2.7.3)
author Hans-G?nter Theisgen
date Thu Feb 17 07:23:25 2022 +0100 (2022-02-17)
parents 934055de50e2
children 44b38e4dce38
files dar-dev/receipt dar-lang/receipt dar/description.txt dar/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dar-dev/receipt	Thu Feb 17 07:23:25 2022 +0100
     1.3 @@ -0,0 +1,21 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="dar-dev"
     1.7 +VERSION="2.7.3"
     1.8 +CATEGORY="development"
     1.9 +TAGS="backup"
    1.10 +SHORT_DESC="Disk archive - development files."
    1.11 +MAINTAINER="maintainer@slitaz.org"
    1.12 +LICENSE="GPL2"
    1.13 +WEB_SITE="http://dar.linux.free.fr/"
    1.14 +
    1.15 +DEPENDS="dar"
    1.16 +WANTED="dar"
    1.17 +
    1.18 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.19 +genpkg_rules()
    1.20 +{
    1.21 +	cook_copy_folders	include
    1.22 +	cook_copy_folders	pkgconfig
    1.23 +	cook_copy_files		*.*a
    1.24 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/dar-lang/receipt	Thu Feb 17 07:23:25 2022 +0100
     2.3 @@ -0,0 +1,18 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="dar-lang"
     2.7 +VERSION="2.7.3"
     2.8 +CATEGORY="localization"
     2.9 +TAGS="backup"
    2.10 +SHORT_DESC="Disk archive - localised messages."
    2.11 +MAINTAINER="maintainer@slitaz.org"
    2.12 +LICENSE="GPL2"
    2.13 +WEB_SITE="http://dar.linux.free.fr/"
    2.14 +
    2.15 +WANTED="dar"
    2.16 +
    2.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.18 +genpkg_rules()
    2.19 +{
    2.20 +	cook_copy_folders	locale
    2.21 +}
     3.1 --- a/dar/description.txt	Wed Feb 16 21:07:01 2022 +0000
     3.2 +++ b/dar/description.txt	Thu Feb 17 07:23:25 2022 +0100
     3.3 @@ -1,11 +1,8 @@
     3.4 -dar is a shell command that backs up from a single file to a whole filesystems,
     3.5 -taking care of hard links, Extended Attributes, sparse files, MacOS's file forks,
     3.6 -any inode type (including Solaris Door inodes), etc.
     3.7 -It has been tested under Linux, Windows, Solaris, FreeBSD, NetBSD, MacOS X and
     3.8 -several other systems and is released under the GNU General Public License (GPL).
     3.9 -It relies on the libdar library and its APplication Interface (API), which is the
    3.10 -core part of dar programs; as such, this library is released under the GPL along
    3.11 -with dar.
    3.12 -Consequently, to use the API, your program must be released under the GPL as well.
    3.13 -Some external programs do rely directly on libdar or on the dar command-line tool
    3.14 -to provide Graphical User Interfaces (GUI).
    3.15 +Dar, which stands for Disk ARchive, is a robust and rich featured
    3.16 +archiving and backup software.
    3.17 +
    3.18 +It is composed of:
    3.19 +
    3.20 +* a library called libdar that exposes both a C++ and a python API,
    3.21 +* a command line program called dar that leverages all the features
    3.22 +  of libdar.
     4.1 --- a/dar/receipt	Wed Feb 16 21:07:01 2022 +0000
     4.2 +++ b/dar/receipt	Thu Feb 17 07:23:25 2022 +0100
     4.3 @@ -1,7 +1,7 @@
     4.4  # SliTaz package receipt.
     4.5  
     4.6  PACKAGE="dar"
     4.7 -VERSION="2.6.7"
     4.8 +VERSION="2.7.3"
     4.9  CATEGORY="system-tools"
    4.10  TAGS="backup"
    4.11  SHORT_DESC="Disk archive."
    4.12 @@ -12,11 +12,12 @@
    4.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.14  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    4.15  
    4.16 +SUGGESTED="dar-lang"
    4.17  DEPENDS="attr bzip2 gcc83-lib-base libgcrypt lzo"
    4.18  BUILD_DEPENDS="attr-dev bzip2-dev e2fsprogs-dev gcc83 
    4.19  	libgcrypt-dev lzo-dev"
    4.20  
    4.21 -TODO="split package into dar and dar-dev ?"
    4.22 +CONFIG_FILES="/etc/darrc"
    4.23  
    4.24  # What is the latest version available today?
    4.25  current_version()
    4.26 @@ -36,13 +37,21 @@
    4.27  		--infodir=/usr/share/info	\
    4.28  		--libdir=/lib			\
    4.29  		--mandir=/usr/share/man		\
    4.30 +		--sysconfdir=/etc		\
    4.31  		$CONFIGURE_ARGS &&
    4.32  	make &&
    4.33 -	make DESTDIR=$DESTDIR install
    4.34 +	make install DESTDIR=$DESTDIR
    4.35  }
    4.36  
    4.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    4.38  genpkg_rules()
    4.39  {
    4.40 -	cp -a $install/*	$fs
    4.41 +	cook_copy_folders	bin
    4.42 +	cook_copy_folders	etc
    4.43 +	cook_copy_folders	samples
    4.44 +	cook_copy_files		*.so*
    4.45 +	cp -a $install/usr/share/dar/dar-catalog.dtd \
    4.46 +				$fs/usr/share/dar
    4.47 +	cp -a $install/usr/share/dar/dar_key.txt \
    4.48 +				$fs/usr/share/dar
    4.49  }