wok annotate urbackup-client/receipt @ rev 23985

linld: up to 60k for header.com
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 28 09:45:01 2020 +0000 (2020-11-28)
parents fffb92e609f9
children 922f061231c2
rev   line source
pascal@19952 1 # SliTaz package receipt.
pascal@19952 2
pascal@19952 3 PACKAGE="urbackup-client"
Hans-G?nter@23721 4 VERSION="2.4.10"
pascal@19952 5 CATEGORY="network"
Hans-G?nter@23721 6 TAGS="backup"
Hans-G?nter@23721 7 SHORT_DESC="An easy to setup Open Source client-server backup system."
pascal@19952 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@19952 9 LICENSE="GPL3"
Hans-G?nter@23721 10 WEB_SITE="https://www.urbackup.org/"
Hans-G?nter@23721 11
pascal@19952 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@19952 13 WGET_URL="https://hndl.urbackup.org/Client/$VERSION/$TARBALL"
pascal@19952 14
pascal@19952 15 DEPENDS="cryptopp wxWidgets"
pascal@19952 16 BUILD_DEPENDS="cryptopp wxWidgets-dev"
pascal@19952 17
pascal@19952 18 # Rules to configure and make the package.
pascal@19952 19 compile_rules()
pascal@19952 20 {
Hans-G?nter@23721 21 ./configure \
Hans-G?nter@23721 22 --prefix=/usr \
Hans-G?nter@23721 23 --sysconfdir=/etc \
Hans-G?nter@23721 24 --localstatedir=/var \
pascal@19952 25 $CONFIGURE_ARGS &&
pascal@19952 26 make &&
pascal@19952 27 make DESTDIR=$DESTDIR install
pascal@19952 28 }
pascal@19952 29
pascal@19952 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@19952 31 genpkg_rules()
pascal@19952 32 {
pascal@19952 33 mkdir -p $install/usr/share/man
Hans-G?nter@23721 34
Hans-G?nter@23721 35 cp -a $install/* $fs
Hans-G?nter@23721 36 cp $src/docs/* $install/usr/share/man
pascal@19952 37 }