wok view bazaar/receipt @ rev 23954

updated smplayer (20.4.2 -> 20.6.0)
author Hans-G?nter Theisgen
date Tue Sep 22 17:05:06 2020 +0100 (2020-09-22)
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 }