d75a865f16
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28424 3c298f89-4303-0410-b956-a3cf2f4a3e73
70 lines
1.7 KiB
Makefile
70 lines
1.7 KiB
Makefile
#
|
|
# Copyright (C) 2006 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:=distribute
|
|
PKG_VERSION:=0.6.21
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://pypi.python.org/packages/source/d/$(PKG_NAME)/
|
|
PKG_MD5SUM:=f783444754861f9b33e9f4083bd97b60
|
|
PKG_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION)/
|
|
|
|
HOST_BUILD_DEPENDS:=python
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
$(call include_mk, python-package.mk)
|
|
|
|
PYTHON:=$(HOST_PYTHON_BIN)
|
|
|
|
define Package/distribute
|
|
SUBMENU:=Python
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=Distribute
|
|
URL:=http://pypi.python.org/pypi/distribute
|
|
DEPENDS:=+python
|
|
PROVIDES:=setuptools
|
|
endef
|
|
|
|
define Package/distribute/description
|
|
Distribute (fork of Setuptools) is a collection of extensions to Distutils
|
|
endef
|
|
|
|
define Host/Compile
|
|
$(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
|
|
endef
|
|
|
|
define Host/Install
|
|
$(INSTALL_DIR) $(STAGING_DIR)$(PYTHON_PKG_DIR)
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
|
|
$(STAGING_DIR)$(PYTHON_PKG_DIR)/
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
|
|
endef
|
|
|
|
define Package/distribute/install
|
|
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
|
|
$(1)$(PYTHON_PKG_DIR)/
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) \
|
|
$(PKG_INSTALL_DIR)/usr/bin/easy_install \
|
|
$(1)/usr/bin/
|
|
$(SED) '1s/#\!.*/#\!\/usr\/bin\/python/' $(1)/usr/bin/easy_install
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|
|
$(eval $(call BuildPackage,distribute))
|