wok-current rev 24625
updated grsync (1.2.6 -> 1.3.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 07 17:46:25 2022 +0100 (2022-03-07) |
parents | 6c76b35274f9 |
children | ad9008f821da |
files | grsync-lang/receipt grsync/description.txt grsync/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/grsync-lang/receipt Mon Mar 07 17:46:25 2022 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="grsync-lang" 1.7 +VERSION="1.3.0" 1.8 +CATEGORY="localization" 1.9 +SHORT_DESC="GTK+ intuitive interface to rsync - localised messages." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="GPL2" 1.12 +WEB_SITE="https://www.opbyte.it/grsync/" 1.13 + 1.14 +WANTED="grsync" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + cook_copy_folders locale 1.20 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/grsync/description.txt Mon Mar 07 17:46:25 2022 +0100 2.3 @@ -0,0 +1,10 @@ 2.4 +Grsync is a rsync GUI (Graphical User Interface). 2.5 +Rsync is the well-known and powerful command line directory and file 2.6 +synchronization tool. 2.7 +Grsync makes use of the GTK libraries and is released under the GPL 2.8 +license, so it is opensource. 2.9 +It doesn't need the gnome libraries to run, but can of course run under 2.10 +gnome, kde or unity pretty fine. 2.11 +It can be effectively used to synchronize local directories and it 2.12 +supports remote targets as well (even though it doesn't support browsing 2.13 +the remote folder).
3.1 --- a/grsync/receipt Mon Mar 07 16:56:05 2022 +0100 3.2 +++ b/grsync/receipt Mon Mar 07 17:46:25 2022 +0100 3.3 @@ -1,18 +1,19 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="grsync" 3.7 -VERSION="1.2.6" 3.8 +VERSION="1.3.0" 3.9 CATEGORY="network" 3.10 SHORT_DESC="GTK+ intuitive interface to rsync." 3.11 MAINTAINER="pankso@slitaz.org" 3.12 LICENSE="GPL2" 3.13 -WEB_SITE="http://www.opbyte.it/grsync/" 3.14 +WEB_SITE="https://www.opbyte.it/grsync/" 3.15 3.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.17 -WGET_URL="http://www.opbyte.it/release/$TARBALL" 3.18 +WGET_URL="https://www.opbyte.it/release/$TARBALL" 3.19 3.20 -DEPENDS="acl gtk+ rsync xorg-libXdamage" 3.21 -BUILD_DEPENDS="gtk+-dev intltool perl-xml-parser xorg-xproto" 3.22 +SUGGESTED="grsync-lang" 3.23 +DEPENDS="acl gtk+ libxml2 rsync xorg-libXdamage" 3.24 +BUILD_DEPENDS="gtk+-dev intltool libxml2-dev perl-xml-parser xorg-xproto" 3.25 3.26 # What is the latest version available today? 3.27 current_version() 3.28 @@ -32,10 +33,11 @@ 3.29 --prefix=/usr \ 3.30 --infodir=/usr/share/info \ 3.31 --mandir=/usr/share/man \ 3.32 - --disable-unity \ 3.33 + --enable-gtk3=no \ 3.34 + --enable-unity=no \ 3.35 $CONFIGURE_ARGS && 3.36 make && 3.37 - make DESTDIR=$DESTDIR install 3.38 + make install DESTDIR=$DESTDIR 3.39 } 3.40 3.41 # Rules to gen a SliTaz package suitable for Tazpkg. 3.42 @@ -46,5 +48,5 @@ 3.43 cp -a $install/usr/bin $fs/usr 3.44 cp -a $install/usr/share/grsync $fs/usr/share 3.45 sed -i s'|#!/bin/bash|#!/bin/sh|' $fs/usr/bin/grsync-batch 3.46 - chmod +x $fs/usr/bin/* 3.47 + chmod +x $fs/usr/bin/* 3.48 }