wok annotate pycurl/receipt @ rev 25012

Up python-xmlutils (1.4.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 16 19:42:25 2022 +0000 (2022-05-16)
parents 2f230197370e
children 8e2c3858ed67
rev   line source
slaxemulator@7569 1 # SliTaz package receipt.
slaxemulator@7569 2
slaxemulator@7569 3 PACKAGE="pycurl"
Hans-G?nter@23460 4 VERSION="7.43.0.3"
slaxemulator@7569 5 CATEGORY="development"
slaxemulator@7569 6 SHORT_DESC="A Python interface to libcurl."
slaxemulator@7569 7 MAINTAINER="slaxemulator@gmail.com"
pascal@14996 8 LICENSE="LGPL2.1"
Hans-G?nter@23460 9 WEB_SITE="http://pycurl.io"
Hans-G?nter@23460 10
slaxemulator@7569 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@25012 12 WGET_URL="https://files.pythonhosted.org/packages/source/${PACKAGE:0:1}/$PACKAGE/$TARBALL"
slaxemulator@7569 13
Hans-G?nter@23460 14 DEPENDS="libcurl python"
Hans-G?nter@23460 15 BUILD_DEPENDS="curl-dev openssl-dev python-dev"
pascal@14996 16
pascal@24459 17 # What is the latest version available today?
pascal@24459 18 current_version()
pascal@24459 19 {
pascal@24459 20 wget -O - $WEB_SITE 2>/dev/null | \
pascal@24459 21 sed '/PYCURL [0-9]/!d;s|.*CURL ||;s|<.*||'
pascal@24459 22 }
pascal@24459 23
slaxemulator@7569 24 # Rules to configure and make the package.
slaxemulator@7569 25 compile_rules()
slaxemulator@7569 26 {
Hans-G?nter@23460 27 python setup.py install \
Hans-G?nter@23460 28 --curl-config=/usr/bin/curl-config \
Hans-G?nter@23460 29 --prefix $DESTDIR/usr
slaxemulator@7569 30 }
slaxemulator@7569 31
slaxemulator@7569 32 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@7569 33 genpkg_rules()
slaxemulator@7569 34 {
slaxemulator@7569 35 mkdir -p $fs/usr
Hans-G?nter@23460 36 cp -a $install/usr/lib $fs/usr
slaxemulator@7569 37 }