wok annotate borgbackup/receipt @ rev 21880

borgbackup: add man
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 29 12:06:26 2019 +0200 (2019-09-29)
parents 7d333aaabc41
children fffb92e609f9
rev   line source
pascal@21879 1 # SliTaz package receipt.
pascal@21879 2
pascal@21879 3 PACKAGE="borgbackup"
pascal@21879 4 VERSION="1.1.10"
pascal@21879 5 CATEGORY="system-tools"
pascal@21879 6 SHORT_DESC="Deduplicating archiver with compression & authenticated encryption"
pascal@21879 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@21879 8 LICENSE="BSD"
pascal@21879 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@21879 10 WEB_SITE="https://www.borgbackup.org/"
pascal@21879 11 WGET_URL="https://files.pythonhosted.org/packages/24/13/77cd0bed77fa80cf79e18d1fb1806641e895878bda389771ea63f30560de/$TARBALL"
pascal@21879 12 TAGS="backup"
pascal@21879 13
pascal@21879 14 DEPENDS="py3k gcc-lib-base acl"
pascal@21879 15 BUILD_DEPENDS="py3k-dev py3k-cython openssl-dev py3k-setuptools_scm"
pascal@21879 16
pascal@21879 17 # Rules to configure and make the package.
pascal@21879 18 compile_rules()
pascal@21879 19 {
pascal@21879 20 python3 ./setup.py build &&
pascal@21879 21 python3 setup.py install --root=$DESTDIR
pascal@21879 22 }
pascal@21879 23
pascal@21879 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@21879 25 genpkg_rules()
pascal@21879 26 {
pascal@21880 27 mkdir $install/usr/share
pascal@21880 28 cp -a $src/docs/man $install/usr/share
pascal@21879 29 cp -a $install/usr $fs/
pascal@21879 30 }