wok-6.x annotate rsync/receipt @ rev 5057
enable tac in busybox
author | Rohit Joshi <jozee@slitaz.org> |
---|---|
date | Mon Mar 08 13:52:48 2010 +0000 (2010-03-08) |
parents | aae40c2e802f |
children | 646704797a39 |
rev | line source |
---|---|
pankso@8 | 1 # SliTaz package receipt. |
pankso@8 | 2 |
pankso@8 | 3 PACKAGE="rsync" |
erjo@4754 | 4 VERSION="3.0.7" |
pankso@203 | 5 CATEGORY="network" |
pankso@8 | 6 SHORT_DESC="Utility that provides fast incremental." |
pankso@8 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@4451 | 8 DEPENDS="popt attr acl" |
pankso@449 | 9 BUILD_DEPENDS="popt-dev" |
pankso@8 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@8 | 11 WEB_SITE="http://rsync.samba.org/" |
pankso@8 | 12 WGET_URL="http://rsync.samba.org/ftp/rsync/$TARBALL" |
jozee@4972 | 13 TAGS="sync" |
pankso@8 | 14 |
pankso@8 | 15 # Rules to configure and make the package. |
pankso@8 | 16 compile_rules() |
pankso@8 | 17 { |
pankso@8 | 18 cd $src |
pankso@536 | 19 ./configure \ |
pankso@536 | 20 --prefix=/usr \ |
pankso@536 | 21 --mandir=/usr/share/man \ |
pascal@2972 | 22 --disable-iconv --disable-iconv-open \ |
pascal@2972 | 23 $CONFIGURE_ARGS |
pascal@2972 | 24 sed -i -e 's/HAVE_ICONV_H ./HAVE_ICONV_H 0/' \ |
pascal@2972 | 25 -e 's/HAVE_ICONV_OPEN ./HAVE_ICONV_OPEN 0/' config.h |
pascal@2972 | 26 sed -i 's/-liconv//' Makefile |
pascal@1581 | 27 make && |
pankso@8 | 28 make DESTDIR=$PWD/_pkg install |
pankso@8 | 29 } |
pankso@8 | 30 |
pankso@8 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@8 | 32 genpkg_rules() |
pankso@8 | 33 { |
pankso@8 | 34 mkdir -p $fs/usr |
pankso@8 | 35 cp -a $_pkg/usr/bin $fs/usr |
pankso@8 | 36 # Config file is /etc/rsyncd.conf. |
pankso@8 | 37 # User and passwd in /etc/rsyncd.secrets, syntax : user:passwd |
pankso@8 | 38 # |
pankso@8 | 39 cp -a stuff/etc $fs |
erjo@1074 | 40 chown root.root $fs/etc/init.d/* |
pankso@8 | 41 chmod 0644 $fs/etc/rsyncd.conf |
erjo@1074 | 42 |
pankso@8 | 43 } |