wok view grsync/receipt @ rev 11785

Down gnumeric (0.8.16) 0.8.17 references gtk+-3. Removed unrecognized option from goffice
author Samuel Trassare <samuel_trassare@yahoo.com>
date Fri Feb 24 10:18:11 2012 -0800 (2012-02-24)
parents c86c7f342e30
children b0f28f14f48e
line source
1 # SliTaz package receipt.
3 PACKAGE="grsync"
4 VERSION="1.2.1"
5 CATEGORY="network"
6 SHORT_DESC="GTK+ intuitive interface to rsync."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ rsync xorg-libXdamage acl"
9 BUILD_DEPENDS="gtk+-dev xorg-xproto perl-xml-parser intltool"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.opbyte.it/grsync/"
12 WGET_URL="http://www.opbyte.it/release/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 chmod +x install-sh
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --disable-unity \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/grsync $fs/usr/share
35 sed -i s'|#!/bin/bash|#!/bin/sh|' $fs/usr/bin/grsync-batch
36 chmod +x $fs/usr/bin/*
37 }