wok view python-ldap/receipt @ rev 23503

updated python-llfuse (0.38 -> 1.3.6)
author Hans-G?nter Theisgen
date Mon Apr 06 08:57:07 2020 +0100 (2020-04-06)
parents db55df2b4086
children d7522d21c4d3
line source
1 # SliTaz package receipt.
3 PACKAGE="python-ldap"
4 VERSION="3.1.0"
5 CATEGORY="development"
6 SHORT_DESC="An object-oriented API to access LDAP directory servers."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="PSL"
9 WEB_SITE="https://www.python-ldap.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://files.pythonhosted.org/packages/source/p/$PACKAGE/$TARBALL"
14 DEPENDS="cyrus-sasl openldap openssl python"
15 BUILD_DEPENDS="cyrus-sasl-dev openldap-dev openssl-dev python-dev python-setuptools"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py build &&
21 python setup.py install --root=$DESTDIR
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 }