wok view pycurl/receipt @ rev 23460

updated pycurl (7.19.0 -> 7.43.0.3)
author Hans-G?nter Theisgen
date Sat Apr 04 17:11:09 2020 +0100 (2020-04-04)
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 }