# HG changeset patch # User Pascal Bellard # Date 1233846832 0 # Node ID 9241ac41c5676ab20374be0869a13bc1cd363bd9 # Parent aec4d3c7826a5a061bd698da038ac0fdd581a630 Add pyopenssl diff -r aec4d3c7826a -r 9241ac41c567 pyopenssl/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pyopenssl/receipt Thu Feb 05 15:13:52 2009 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="pyopenssl" +VERSION="0.8" +CATEGORY="development" +SHORT_DESC="OpenSSL library subset wrapper for python." +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="pyOpenSSL" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://$PACKAGE.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +DEPENDS="python openssl" +BUILD_DEPENDS="python openssl-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build && python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} +