2011-01-09 18:45:30 +01:00
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
2013-12-21 21:51:48 +01:00
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
2011-01-09 18:45:30 +01:00
#
2013-12-21 21:51:48 +01:00
# OpenELEC is free software: you can redistribute it and/or modify
2011-01-09 18:45:30 +01:00
# it under the terms of the GNU General Public License as published by
2013-12-21 21:51:48 +01:00
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
2011-01-09 18:45:30 +01:00
#
2013-12-21 21:51:48 +01:00
# OpenELEC is distributed in the hope that it will be useful,
2011-01-09 18:45:30 +01:00
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2013-12-21 21:51:48 +01:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2011-01-09 18:45:30 +01:00
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
2013-12-21 21:51:48 +01:00
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
2011-01-09 18:45:30 +01:00
################################################################################
2013-07-21 00:03:44 +02:00
PKG_NAME = "setuptools"
2014-01-02 13:20:48 +01:00
PKG_VERSION = "2.0.2"
2010-10-19 20:23:03 +02:00
PKG_REV = "1"
PKG_ARCH = "any"
PKG_LICENSE = "OSS"
2013-07-21 00:03:44 +02:00
PKG_SITE = "https://pypi.python.org/pypi/setuptools"
PKG_URL = " http://pypi.python.org/packages/source/s/ $PKG_NAME / $PKG_NAME - $PKG_VERSION .tar.gz "
2014-01-30 14:32:31 +01:00
PKG_DEPENDS_HOST = "Python:host"
2010-10-19 20:23:03 +02:00
PKG_PRIORITY = "optional"
PKG_SECTION = "python/devel"
2013-07-21 00:03:44 +02:00
PKG_SHORTDESC = "setuptools: A collection of enhancements to the Python distutils"
2010-10-19 20:23:03 +02:00
PKG_LONGDESC = "Distribute is intended to replace Setuptools as the standard method for working with Python module distributions. Packages built and distributed using distribute look to the user like ordinary Python packages based on the distutils. Your users don't need to install or even know about setuptools in order to use them, and you don't have to include the entire setuptools package in your distributions. By including just a single bootstrap module (a 7K .py file), your package will automatically download and install setuptools if the user is building your package from source and doesn't have a suitable version already installed."
2010-11-25 18:16:59 +01:00
2014-01-21 16:28:20 +01:00
PKG_IS_ADDON = "no"
2010-11-25 18:16:59 +01:00
PKG_AUTORECONF = "no"
2014-01-21 16:28:20 +01:00
m a k e _ h o s t ( ) {
: # nothing todo
}
m a k e i n s t a l l _ h o s t ( ) {
python setup.py install --prefix= $ROOT /$TOOLCHAIN
}