wok-next annotate bzr/receipt @ rev 21017

Some maintenance
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 16 16:46:05 2018 +0300 (2018-10-16)
parents
children d5aab818505e
rev   line source
al@20960 1 # SliTaz package receipt.
al@20960 2
al@20960 3 PACKAGE="bzr"
al@20960 4 VERSION="latest"
al@20960 5 CATEGORY="development"
al@20960 6 SHORT_DESC="Friendly distributed version control system"
al@20960 7 MAINTAINER="rcx@zoominternet.net"
al@20960 8 LICENSE="GPL2"
al@20960 9 WEB_SITE="https://pypi.org/project/bzr/"
al@20960 10
al@20960 11 BUILD_DEPENDS="python-dev"
al@20960 12
al@20960 13 compile_rules() {
al@20960 14 pip install --no-compile --root=$DESTDIR bzr || return 1
al@20960 15
al@20960 16 mkdir $install/usr/share/
al@20960 17 mv $install/usr/man $install/usr/share/
al@20960 18 }
al@20960 19
al@20960 20 genpkg_rules() {
al@20960 21 VERSION=$(sed -n '/^Successfully installed/ s|.*bzr-||p' $LOGS/$PACKAGE.log)
al@20960 22 copy @std
al@20960 23 DEPENDS="python"
al@20960 24 PROVIDE="bazaar"
al@20960 25 TAGS="dvcs version-control versioning"
al@20960 26 }