wok annotate grsync/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents c86c7f342e30
children b0f28f14f48e
rev   line source
pankso@43 1 # SliTaz package receipt.
pankso@43 2
pankso@43 3 PACKAGE="grsync"
slaxemulator@11645 4 VERSION="1.2.1"
pankso@203 5 CATEGORY="network"
pankso@43 6 SHORT_DESC="GTK+ intuitive interface to rsync."
pankso@43 7 MAINTAINER="pankso@slitaz.org"
paul@4435 8 DEPENDS="gtk+ rsync xorg-libXdamage acl"
pankso@3606 9 BUILD_DEPENDS="gtk+-dev xorg-xproto perl-xml-parser intltool"
pankso@43 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@43 11 WEB_SITE="http://www.opbyte.it/grsync/"
pankso@43 12 WGET_URL="http://www.opbyte.it/release/$TARBALL"
pankso@43 13
pankso@43 14 # Rules to configure and make the package.
pankso@43 15 compile_rules()
pankso@43 16 {
pankso@43 17 cd $src
pankso@3606 18 chmod +x install-sh
pankso@142 19 ./configure \
pankso@142 20 --prefix=/usr \
pankso@142 21 --infodir=/usr/share/info \
pankso@142 22 --mandir=/usr/share/man \
pascal@11649 23 --disable-unity \
pascal@1465 24 $CONFIGURE_ARGS &&
pascal@1465 25 make &&
slaxemulator@11645 26 make DESTDIR=$DESTDIR install
pankso@43 27 }
pankso@43 28
pankso@43 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@43 30 genpkg_rules()
pankso@43 31 {
slaxemulator@11645 32 mkdir -p $fs/usr/share
paul@4435 33 cp -a $_pkg/usr/bin $fs/usr
pankso@3606 34 cp -a $_pkg/usr/share/grsync $fs/usr/share
paul@4435 35 sed -i s'|#!/bin/bash|#!/bin/sh|' $fs/usr/bin/grsync-batch
pankso@3606 36 chmod +x $fs/usr/bin/*
pankso@43 37 }
slaxemulator@6394 38