# Copyright 1999-2013 Jan Pobrislo # Distributed under the terms of the GNU General Public License v2 # $Header: $ # # Original Author: ccx # Purpose: install full bzr tree to a script directory # # inherit bzr HOMEPAGE="http://webprojekty.cz/ccx/wobsite/projects.html" #EBZR_REPO_URI="http://webprojekty.cz/ccx/bzr/${PN}" #EBZR_CHECKOUT_CMD="bzr branch" #EBZR_WORKDIR_CHECKOUT=true EXPORT_FUNCTIONS src_unpack src_install bzr_script_src_unpack() { bzr branch "http://webprojekty.cz/ccx/bzr/${PN}" "$S" || die } bzr_script_src_install() { cd "$D" || die mkdir -p usr/local/bzr || die mv "$S" "usr/local/bzr/${PN}" || die }