2011-01-09 18:45:30 +01:00
|
|
|
################################################################################
|
|
|
|
|
# This file is part of OpenELEC - http://www.openelec.tv
|
2016-01-02 17:29:56 +01:00
|
|
|
# Copyright (C) 2009-2016 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
|
|
|
################################################################################
|
|
|
|
|
|
2010-11-15 15:06:17 +01:00
|
|
|
PKG_NAME="distutilscross"
|
|
|
|
|
PKG_VERSION="0.1"
|
2017-07-17 20:49:22 +02:00
|
|
|
PKG_SHA256="4ed3fb427708c8a3ed5fe9c599532480f581078a1e0aec0e50f40eb58e9f0015"
|
2010-11-15 15:06:17 +01:00
|
|
|
PKG_ARCH="any"
|
|
|
|
|
PKG_LICENSE="GPL"
|
|
|
|
|
PKG_SITE="http://bitbucket.org/lambacck/distutilscross/"
|
2017-05-13 02:56:54 +01:00
|
|
|
PKG_URL="https://files.pythonhosted.org/packages/source/${PKG_NAME:0:1}/$PKG_NAME/$PKG_NAME-$PKG_VERSION.tar.gz"
|
2017-10-08 23:50:38 +01:00
|
|
|
PKG_DEPENDS_HOST="Python2:host setuptools:host"
|
2010-11-15 15:06:17 +01:00
|
|
|
PKG_SECTION="python/devel"
|
|
|
|
|
PKG_SHORTDESC="distutilscross: Cross Compile Python Extensions"
|
|
|
|
|
PKG_LONGDESC="distutilscross enhances distutils to support Cross Compile of Python extensions"
|
2017-10-27 13:11:34 +02:00
|
|
|
PKG_TOOLCHAIN="manual"
|
2014-01-21 02:07:28 +01:00
|
|
|
|
|
|
|
|
makeinstall_host() {
|
2017-02-17 06:40:16 +00:00
|
|
|
python setup.py install --prefix=$TOOLCHAIN
|
2014-01-21 02:07:28 +01:00
|
|
|
}
|