wok-next view burp/receipt @ rev 20085
emacs: make receipt less complicated - all files are packaged now - fix it if something bad happens.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Oct 25 21:45:59 2017 +0300 (2017-10-25) |
parents | 43a60529166c |
children | e6615350078d |
line source
1 # SliTaz package receipt.
3 PACKAGE="burp"
4 VERSION="1.3.10"
5 CATEGORY="utilities"
6 SHORT_DESC="KISS BackUp and Restore Program"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://burp.grke.net/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="acl libssl libcrypto attr popt ncurses zlib bzlib gcc-lib-base"
14 BUILD_DEPENDS="librsync acl-dev openssl-dev attr-dev popt-dev ncurses-dev \
15 bzip2-dev zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --sbindir=/usr/sbin \
22 --sysconfdir=/etc \
23 --mandir=/usr/share/man \
24 --infodir=/usr/share/info \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/* $fs
33 }