wok annotate python-unittest2/receipt @ rev 20406

asterisk: add code2 & opus codec
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 20 23:12:02 2018 +0200 (2018-07-20)
parents 2a5cc8208d36
children 814362194a8d
rev   line source
pascal@14376 1 # SliTaz package receipt.
pascal@14376 2
pascal@14376 3 PACKAGE="python-unittest2"
pascal@14376 4 VERSION="0.5.1"
pascal@14376 5 CATEGORY="development"
pascal@14376 6 SHORT_DESC="New features backport to the unittest testing framework."
pascal@14376 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15379 8 LICENSE="BSD"
pascal@14376 9 SOURCE="unittest2"
pascal@14376 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@14376 11 WEB_SITE="http://pypi.python.org/pypi/unittest2"
pascal@14376 12 WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
pascal@14376 13
pascal@14376 14 DEPENDS="python"
pascal@14376 15 BUILD_DEPENDS="python-dev setuptools"
pascal@14376 16
pascal@14376 17 # Rules to configure and make the package.
pascal@14376 18 compile_rules()
pascal@14376 19 {
pascal@14376 20 python setup.py build
pascal@14376 21 python setup.py test
pascal@14376 22 python setup.py install --root=$DESTDIR
pascal@14376 23 }
pascal@14376 24
pascal@14376 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14376 26 genpkg_rules()
pascal@14376 27 {
pascal@14376 28 mkdir -p $fs/usr
pascal@14376 29 cp -a $install/usr/lib $fs/usr
pascal@14376 30 }