wok-next view python-apsw/receipt @ rev 20042

pigz, pxe-kexec: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 22 20:53:07 2017 +0200 (2017-10-22)
parents fd4f1e692109
children 2809ecb8c754
line source
1 # SliTaz package receipt v2.
3 PACKAGE="python-apsw"
4 VERSION="3.18.0-r1"
5 CATEGORY="development"
6 SHORT_DESC="Python wrapper for SQLite"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="zlib/libpng"
9 WEB_SITE="https://github.com/rogerbinns/apsw"
11 TARBALL="apsw-$VERSION.zip"
12 WGET_URL="$WEB_SITE/releases/download/$VERSION/$TARBALL"
14 BUILD_DEPENDS="python-dev sqlite-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 python setup.py build &&
20 python setup.py install --root=$DESTDIR
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 copy @std
27 DEPENDS="python libsqlite"
28 }