wok view grsync/receipt @ rev 420

remove JWM_MENU
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 13 10:38:19 2008 +0000 (2008-03-13)
parents 00b8d39101ac
children 9d7bcbed6dde
line source
1 # SliTaz package receipt.
3 PACKAGE="grsync"
4 VERSION="0.6.1"
5 CATEGORY="network"
6 SHORT_DESC="GTK+ intuitive interface to rsync."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ rsync"
9 BUILD_DEPENDS="gtk+-dev"
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 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/locale
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/pixmaps $fs/usr/share/pixmaps
33 cp -a $_pkg/usr/share/locale/fr_FR $fs/usr/share/locale/fr
34 strip -s $fs/usr/bin/* 2>/dev/null
35 # Desktop entry
36 cp -a $_pkg/usr/share/applications $fs/usr/share
37 }