wok view pycurl/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 16df76e1fc6a
children 2f230197370e
line source
1 # SliTaz package receipt.
3 PACKAGE="pycurl"
4 VERSION="7.43.0.3"
5 CATEGORY="development"
6 SHORT_DESC="A Python interface to libcurl."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://pycurl.io"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://dl.bintray.com/$PACKAGE/$PACKAGE/$TARBALL"
14 DEPENDS="libcurl python"
15 BUILD_DEPENDS="curl-dev openssl-dev python-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py install \
21 --curl-config=/usr/bin/curl-config \
22 --prefix $DESTDIR/usr
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 }