# HG changeset patch # User Hans-G?nter Theisgen # Date 1644311394 -3600 # Node ID 2a2813081ffe2da817c74d2c19f304e7702aaa0f # Parent 5ac01c6c6cecfac4e07317161a23bf71f8ee6a65 created recipe for python-distutils-extra diff -r 5ac01c6c6cec -r 2a2813081ffe python-distutils-extra/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-distutils-extra/description.txt Tue Feb 08 10:09:54 2022 +0100 @@ -0,0 +1,2 @@ +Enables you to easily integrate gettext support, themed icons and +scrollkeeper based documentation into Python's distutils. diff -r 5ac01c6c6cec -r 2a2813081ffe python-distutils-extra/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-distutils-extra/receipt Tue Feb 08 10:09:54 2022 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="python-distutils-extra" +VERSION="2.39" +CATEGORY="development" +SHORT_DESC="Enhanced distutils package for python." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL" +WEB_SITE="https://launchpad.net/python-distutils-extr" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://launchpad.net/$PACKAGE/trunk/$VERSION/+download/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="python-setuptools" + +HOST_ARCH="i486 arm" + +# Rules to configure and make the package. +compile_rules() +{ + python setup.py build && + python setup.py install --prefix=/usr --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +}