wok view python-pytest/receipt @ rev 16395

UP: hostapd (2.1), fix libnl missing pkgconfig file and add to ARM with rfkill
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 16 03:02:41 2014 +0200 (2014-04-16)
parents a7f918cb00d1
children 7390f8de9846
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pytest"
4 VERSION="2.3.4"
5 CATEGORY="development"
6 SHORT_DESC="A simple powerful testing with Python"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="pytest"
10 TARBALL="$SOURCE-$VERSION.zip"
11 WEB_SITE="http://pypi.python.org/pypi/pytest"
12 WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
14 DEPENDS="python"
15 BUILD_DEPENDS="python-dev setuptools"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 python setup.py build
22 python setup.py install --root=$DESTDIR
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/lib $fs/usr
30 }