wok-6.x view pycurl/receipt @ rev 15011
alsaplayer-scopes: typo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Aug 11 12:51:05 2013 +0000 (2013-08-11) |
parents | 31fd7ff3769f |
children | 4a6a57ff0b8c |
line source
1 # SliTaz package receipt.
3 PACKAGE="pycurl"
4 VERSION="7.19.0"
5 CATEGORY="development"
6 SHORT_DESC="A Python interface to libcurl."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://pycurl.sourceforge.net"
11 WGET_URL="http://pycurl.sourceforge.net/download/$TARBALL"
13 DEPENDS="python libcurl"
14 BUILD_DEPENDS="openssl-dev curl-dev python-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 python setup.py install --curl-config=/usr/bin/curl-config --prefix $PWD/_pkg/usr
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/lib $fs/usr
29 }