wok annotate pyopenssl/receipt @ rev 2975

fix: typo firefox-dev
author Rohit Joshi <jozee@slitaz.org>
date Sun May 10 14:27:56 2009 +0000 (2009-05-10)
parents
children c419c462ce09
rev   line source
pascal@2150 1 # SliTaz package receipt.
pascal@2150 2
pascal@2150 3 PACKAGE="pyopenssl"
pascal@2150 4 VERSION="0.8"
pascal@2150 5 CATEGORY="development"
pascal@2150 6 SHORT_DESC="OpenSSL library subset wrapper for python."
pascal@2150 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2150 8 SOURCE="pyOpenSSL"
pascal@2150 9 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@2150 10 WEB_SITE="http://$PACKAGE.sourceforge.net/"
pascal@2150 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@2150 12 DEPENDS="python openssl"
pascal@2150 13 BUILD_DEPENDS="python openssl-dev"
pascal@2150 14
pascal@2150 15 # Rules to configure and make the package.
pascal@2150 16 compile_rules()
pascal@2150 17 {
pascal@2150 18 cd $src
pascal@2150 19 python setup.py build && python setup.py install --root=$PWD/_pkg
pascal@2150 20 }
pascal@2150 21
pascal@2150 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2150 23 genpkg_rules()
pascal@2150 24 {
pascal@2150 25 cp -a $_pkg/usr $fs
pascal@2150 26 }
pascal@2150 27