wok-next annotate bzr/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents 65f5c0b7dcd4
children
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@21020 7 MAINTAINER="devel@slitaz.org"
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@21020 14 pip install --no-compile --root=$install 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 }