# HG changeset patch # User Hans-G?nter Theisgen # Date 1582382182 -3600 # Node ID 39a360ca68eb2e3983ce165952e8ce259630ea5d # Parent cc3cefae8ca20507cbb87783f3025baf968de929 updated grsync (1.2.2 -> 1.2.6) diff -r cc3cefae8ca2 -r 39a360ca68eb grsync/receipt --- a/grsync/receipt Sat Feb 22 15:26:39 2020 +0100 +++ b/grsync/receipt Sat Feb 22 15:36:22 2020 +0100 @@ -1,30 +1,31 @@ # SliTaz package receipt. PACKAGE="grsync" -VERSION="1.2.2" +VERSION="1.2.6" CATEGORY="network" SHORT_DESC="GTK+ intuitive interface to rsync." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://www.opbyte.it/grsync/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.opbyte.it/grsync/" WGET_URL="http://www.opbyte.it/release/$TARBALL" -DEPENDS="gtk+ rsync xorg-libXdamage acl" -BUILD_DEPENDS="gtk+-dev xorg-xproto perl-xml-parser intltool" +DEPENDS="acl gtk+ rsync xorg-libXdamage" +BUILD_DEPENDS="gtk+-dev intltool perl-xml-parser xorg-xproto" # Rules to configure and make the package. compile_rules() { # Binutils 2.22 break many packages build without LDFLAGS set correctly. export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries" - cd $src chmod +x install-sh - ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --disable-unity \ + + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --disable-unity \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install @@ -34,9 +35,9 @@ genpkg_rules() { mkdir -p $fs/usr/share - 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 + + 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/* } -