wok rev 22881

updated grsync (1.2.2 -> 1.2.6)
author Hans-G?nter Theisgen
date Sat Feb 22 15:36:22 2020 +0100 (2020-02-22)
parents cc3cefae8ca2
children 7751c1676f43
files grsync/receipt
line diff
     1.1 --- a/grsync/receipt	Sat Feb 22 15:26:39 2020 +0100
     1.2 +++ b/grsync/receipt	Sat Feb 22 15:36:22 2020 +0100
     1.3 @@ -1,30 +1,31 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="grsync"
     1.7 -VERSION="1.2.2"
     1.8 +VERSION="1.2.6"
     1.9  CATEGORY="network"
    1.10  SHORT_DESC="GTK+ intuitive interface to rsync."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="http://www.opbyte.it/grsync/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://www.opbyte.it/grsync/"
    1.17  WGET_URL="http://www.opbyte.it/release/$TARBALL"
    1.18  
    1.19 -DEPENDS="gtk+ rsync xorg-libXdamage acl"
    1.20 -BUILD_DEPENDS="gtk+-dev xorg-xproto perl-xml-parser intltool"
    1.21 +DEPENDS="acl gtk+ rsync xorg-libXdamage"
    1.22 +BUILD_DEPENDS="gtk+-dev intltool perl-xml-parser xorg-xproto"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27  	# Binutils 2.22 break many packages build without LDFLAGS set correctly.
    1.28  	export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries"
    1.29 -	cd $src
    1.30  	chmod +x install-sh
    1.31 -	./configure \
    1.32 -		--prefix=/usr \
    1.33 -		--infodir=/usr/share/info \
    1.34 -		--mandir=/usr/share/man \
    1.35 -		--disable-unity \
    1.36 +
    1.37 +	./configure				\
    1.38 +		--prefix=/usr			\
    1.39 +		--infodir=/usr/share/info	\
    1.40 +		--mandir=/usr/share/man		\
    1.41 +		--disable-unity			\
    1.42  		$CONFIGURE_ARGS &&
    1.43  	make &&
    1.44  	make DESTDIR=$DESTDIR install
    1.45 @@ -34,9 +35,9 @@
    1.46  genpkg_rules()
    1.47  {
    1.48      	mkdir -p $fs/usr/share
    1.49 -    	cp -a $install/usr/bin $fs/usr
    1.50 -	cp -a $install/usr/share/grsync $fs/usr/share
    1.51 -    	sed -i s'|#!/bin/bash|#!/bin/sh|' $fs/usr/bin/grsync-batch
    1.52 +
    1.53 +    	cp -a $install/usr/bin			$fs/usr
    1.54 +	cp -a $install/usr/share/grsync		$fs/usr/share
    1.55 +    	sed -i s'|#!/bin/bash|#!/bin/sh|'	$fs/usr/bin/grsync-batch
    1.56  	chmod +x $fs/usr/bin/*
    1.57  }
    1.58 -