wok-6.x rev 3789
Add python-ldap
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Aug 01 16:32:07 2009 +0200 (2009-08-01) |
parents | 83e2c1cabb15 |
children | a97d2633b702 |
files | python-ldap/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/python-ldap/receipt Sat Aug 01 16:32:07 2009 +0200 1.3 @@ -0,0 +1,28 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="python-ldap" 1.7 +VERSION="2.3.9" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="An object-oriented API to access LDAP directory servers." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="http://www.python-ldap.org/" 1.13 +WGET_URL="http://pypi.python.org/packages/source/p/$PACKAGE/$TARBALL" 1.14 +DEPENDS="openldap openssl cyrus-sasl" 1.15 +BUILD_DEPENDS="openldap-dev openssl-dev cyrus-sasl-dev" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src 1.21 + python setup.py build 1.22 + python setup.py install --root=$PWD/_pkg 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + mkdir -p $fs/usr 1.29 + cp -a $_pkg/usr/lib $fs/usr 1.30 +} 1.31 +