# HG changeset patch # User Hans-G?nter Theisgen # Date 1578897907 -3600 # Node ID 23e58fed9a4042e3ee267899e64be7efc9bd95a7 # Parent 874e0cca7eba4ceef624888cdb4626e9646eb5db updated dar (2.4.18 -> 2.6.7) diff -r 874e0cca7eba -r 23e58fed9a40 dar/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dar/description.txt Mon Jan 13 07:45:07 2020 +0100 @@ -0,0 +1,11 @@ +dar is a shell command that backs up from a single file to a whole filesystems, +taking care of hard links, Extended Attributes, sparse files, MacOS's file forks, +any inode type (including Solaris Door inodes), etc. +It has been tested under Linux, Windows, Solaris, FreeBSD, NetBSD, MacOS X and +several other systems and is released under the GNU General Public License (GPL). +It relies on the libdar library and its APplication Interface (API), which is the +core part of dar programs; as such, this library is released under the GPL along +with dar. +Consequently, to use the API, your program must be released under the GPL as well. +Some external programs do rely directly on libdar or on the dar command-line tool +to provide Graphical User Interfaces (GUI). diff -r 874e0cca7eba -r 23e58fed9a40 dar/receipt --- a/dar/receipt Sun Jan 12 17:58:12 2020 +0100 +++ b/dar/receipt Mon Jan 13 07:45:07 2020 +0100 @@ -1,24 +1,32 @@ # SliTaz package receipt. PACKAGE="dar" -VERSION="2.4.18" +VERSION="2.6.7" CATEGORY="system-tools" +TAGS="backup" SHORT_DESC="Disk archive." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" WEB_SITE="http://dar.linux.free.fr/" + TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -TAGS="backup" -DEPENDS="gcc-lib-base lzo libgcrypt bzip2 attr" -BUILD_DEPENDS="lzo-dev libgcrypt-dev bzip2-dev e2fsprogs-dev attr-dev" +DEPENDS="attr bzip2 gcc83-lib-base libgcrypt lzo" +BUILD_DEPENDS="attr-dev bzip2-dev e2fsprogs-dev gcc83 + libgcrypt-dev lzo-dev" + +TODO="split package into dar and dar-dev ?" # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man \ + ./configure \ + CC=gcc-83 \ + CXX=g++-83 \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install @@ -27,5 +35,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs + cp -a $install/* $fs }