wok-current view librsync/receipt @ rev 18471
syslinux: receipt formatting (Pascal already removed lines, so it is :)
help.en: 4000 -> 5000 packages
help.en: 4000 -> 5000 packages
| author | Aleksej Bobylev <al.bobylev@gmail.com> | 
|---|---|
| date | Sat Oct 03 16:36:26 2015 +0300 (2015-10-03) | 
| parents | 2cd88d54fb64 | 
| children | 65d7d867e0c1 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="librsync"
     4 VERSION="0.9.7"
     5 CATEGORY="development"
     6 SHORT_DESC="Library for the rsync remote-delta algorithm"
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="LGPL2.1"
     9 WEB_SITE="http://librsync.sourceforge.net/"
    10 TARBALL="$PACKAGE-$VERSION.tar.gz"
    11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    13 DEPENDS="zlib bzlib popt"
    14 BUILD_DEPENDS="popt-dev bzip2-dev zlib-dev"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	cd $src
    20 	./configure --prefix=/usr \
    21 		--mandir=/usr/share/man \
    22 		--infodir=/usr/share/info \
    23 		$CONFIGURE_ARGS &&
    24 	make && make DESTDIR=$DESTDIR install
    25 }
    27 # Rules to gen a SliTaz package suitable for Tazpkg.
    28 genpkg_rules()
    29 {
    30 	mkdir $fs/usr
    31 	cp -a $install/usr/include $fs/usr
    32 	cp -a $install/usr/bin $fs/usr
    33 	cp -a $install/usr/lib $fs/usr
    34 }