wok view rsync/receipt @ rev 4088

Up: glpi (0.72.21)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Sep 16 13:54:48 2009 +0000 (2009-09-16)
parents 0e0beb99e92a
children 8802649167db
line source
1 # SliTaz package receipt.
3 PACKAGE="rsync"
4 VERSION="3.0.6"
5 CATEGORY="network"
6 SHORT_DESC="Utility that provides fast incremental."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="popt"
9 BUILD_DEPENDS="popt-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://rsync.samba.org/"
12 WGET_URL="http://rsync.samba.org/ftp/rsync/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 --disable-iconv --disable-iconv-open \
22 $CONFIGURE_ARGS
23 sed -i -e 's/HAVE_ICONV_H ./HAVE_ICONV_H 0/' \
24 -e 's/HAVE_ICONV_OPEN ./HAVE_ICONV_OPEN 0/' config.h
25 sed -i 's/-liconv//' Makefile
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $_pkg/usr/bin $fs/usr
35 # Config file is /etc/rsyncd.conf.
36 # User and passwd in /etc/rsyncd.secrets, syntax : user:passwd
37 #
38 cp -a stuff/etc $fs
39 chown root.root $fs/etc/init.d/*
40 chmod 0644 $fs/etc/rsyncd.conf
42 }