python-setuptools: first revision
Signed-off-by: Alexandru Ardelean <aa@ocedo.com>
This commit is contained in:
parent
619f2c1807
commit
47ed969646
1 changed files with 62 additions and 0 deletions
62
lang/python-setuptools/Makefile
Normal file
62
lang/python-setuptools/Makefile
Normal file
|
@ -0,0 +1,62 @@
|
|||
#
|
||||
# Copyright (C) 2014 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=python-setuptools
|
||||
PKG_VERSION:=7.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=setuptools-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://pypi.python.org/packages/source/s/setuptools/
|
||||
PKG_MD5SUM:=6245d6752e2ef803c365f560f7f2f940
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/setuptools-$(PKG_VERSION)
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
$(call include_mk, python-package.mk)
|
||||
|
||||
define Package/python-setuptools
|
||||
SUBMENU:=Python
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
TITLE:=Tool for installing Python packages.
|
||||
URL:=https://bitbucket.org/pypa/setuptools
|
||||
DEPENDS:=+python
|
||||
endef
|
||||
|
||||
define Package/python-setuptools/description
|
||||
Easily download, build, install, upgrade, and uninstall Python packages
|
||||
endef
|
||||
|
||||
PYTHONPATH:=$(PKG_INSTALL_DIR)/$(PYTHON_PKG_DIR)
|
||||
define Build/Compile
|
||||
$(INSTALL_DIR) $(PYTHONPATH)
|
||||
$(call Build/Compile/PyMod,,\
|
||||
install --prefix="$(PKG_INSTALL_DIR)/usr" \
|
||||
)
|
||||
endef
|
||||
|
||||
define PyPackage/python-setuptools/filespec
|
||||
+|/usr/lib/python$(PYTHON_VERSION)/site-packages
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) $(2)/lib/python$(PYTHON_VERSION)/site-packages
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/python$(PYTHON_VERSION)/site-packages/* \
|
||||
$(HOST_PYTHON_LIB_DIR)/site-packages
|
||||
endef
|
||||
|
||||
define PyPackage/python-setuptools/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
$(eval $(call PyPackage,python-setuptools))
|
||||
$(eval $(call BuildPackage,python-setuptools))
|
||||
|
Loading…
Reference in a new issue