# HG changeset patch # User Hans-G?nter Theisgen # Date 1646671585 -3600 # Node ID ddc3cc7ce28046819c21c7841d22c12d2b0bd7a2 # Parent 6c76b35274f955ca3ca2b0942291c6d7471bd9be updated grsync (1.2.6 -> 1.3.0) diff -r 6c76b35274f9 -r ddc3cc7ce280 grsync-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/grsync-lang/receipt Mon Mar 07 17:46:25 2022 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="grsync-lang" +VERSION="1.3.0" +CATEGORY="localization" +SHORT_DESC="GTK+ intuitive interface to rsync - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2" +WEB_SITE="https://www.opbyte.it/grsync/" + +WANTED="grsync" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r 6c76b35274f9 -r ddc3cc7ce280 grsync/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/grsync/description.txt Mon Mar 07 17:46:25 2022 +0100 @@ -0,0 +1,10 @@ +Grsync is a rsync GUI (Graphical User Interface). +Rsync is the well-known and powerful command line directory and file +synchronization tool. +Grsync makes use of the GTK libraries and is released under the GPL +license, so it is opensource. +It doesn't need the gnome libraries to run, but can of course run under +gnome, kde or unity pretty fine. +It can be effectively used to synchronize local directories and it +supports remote targets as well (even though it doesn't support browsing +the remote folder). diff -r 6c76b35274f9 -r ddc3cc7ce280 grsync/receipt --- a/grsync/receipt Mon Mar 07 16:56:05 2022 +0100 +++ b/grsync/receipt Mon Mar 07 17:46:25 2022 +0100 @@ -1,18 +1,19 @@ # SliTaz package receipt. PACKAGE="grsync" -VERSION="1.2.6" +VERSION="1.3.0" CATEGORY="network" SHORT_DESC="GTK+ intuitive interface to rsync." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://www.opbyte.it/grsync/" +WEB_SITE="https://www.opbyte.it/grsync/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://www.opbyte.it/release/$TARBALL" +WGET_URL="https://www.opbyte.it/release/$TARBALL" -DEPENDS="acl gtk+ rsync xorg-libXdamage" -BUILD_DEPENDS="gtk+-dev intltool perl-xml-parser xorg-xproto" +SUGGESTED="grsync-lang" +DEPENDS="acl gtk+ libxml2 rsync xorg-libXdamage" +BUILD_DEPENDS="gtk+-dev intltool libxml2-dev perl-xml-parser xorg-xproto" # What is the latest version available today? current_version() @@ -32,10 +33,11 @@ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ - --disable-unity \ + --enable-gtk3=no \ + --enable-unity=no \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -46,5 +48,5 @@ cp -a $install/usr/bin $fs/usr cp -a $install/usr/share/grsync $fs/usr/share sed -i s'|#!/bin/bash|#!/bin/sh|' $fs/usr/bin/grsync-batch - chmod +x $fs/usr/bin/* + chmod +x $fs/usr/bin/* }