wok view bazaar/receipt @ rev 23973

Up openconnect (8.10), openexr (2.5.3), openldap (2.4.55), openssh (8.4p1), openvswitch (2.14.0), phpmyadmin (5.0.4), rust (1.47.0), shellinabox (2.21)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 28 12:04:50 2020 +0000 (2020-10-28)
parents 324c13268efe
children 9af0e03b8ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="bazaar"
4 VERSION="2.7.0"
5 CATEGORY="development"
6 TAGS="dvcs version-control versioning"
7 SHORT_DESC="A free distributed version control system."
8 MAINTAINER="rcx@zoominternet.net"
9 LICENSE="GPL2"
10 WEB_SITE="http://bazaar.canonical.com/en/"
12 SOURCE="bzr"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://launchpad.net/$SOURCE/${VERSION:0:3}/$VERSION/+download/$TARBALL"
16 DEPENDS="glibc-base python zlib"
17 BUILD_DEPENDS="python python-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 python setup.py install \
23 --prefix=/usr \
24 --root=$DESTDIR \
25 --no-compile
27 mkdir -p $install/usr/share
28 mv $install/usr/man $install/usr/share
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib $fs/usr
38 }