wok view buildbot/receipt @ rev 23043

gcc83-lib-base: add /usr/libgcc83/libstdc++.la (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 05 12:21:44 2020 +0100 (2020-03-05)
parents bbebd07cdfe5
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="buildbot"
4 VERSION="2.5.1"
5 CATEGORY="development"
6 TAGS="python buildtools"
7 SHORT_DESC="Tool to automate the compile and test cycle of source code."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://www.buildbot.net/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
15 DEPENDS="py3k twisted"
16 BUILD_DEPENDS="py3k py3k-dev python-setuptools"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 python3 setup.py install --root=$DESTDIR
22 cook_pick_manpages docs/buildbot.1
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/* $fs
29 rm -r $fs/usr/share/man
30 }