prohibit cython of building *.so-files - just use plain python-implementation
[openwrt/svn-archive/archive.git] / lang / cython / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id: Makefile 13829 2009-01-03 00:28:00Z mirko $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=cython
12 PKG_VERSION:=0.10.3
13 PKG_RELEASE:=1
14 PKG_SOURCE:=Cython-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.cython.org/
16 PKG_BUILD_DIR:=$(BUILD_DIR)/Cython-$(PKG_VERSION)
17
18 include $(INCLUDE_DIR)/package.mk
19 -include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
20
21 define Package/cython
22 SUBMENU:=Python
23 SECTION:=lang
24 CATEGORY:=Languages
25 TITLE:=cython
26 URL:=http://www.cython.org
27 DEPENDS:=python-core @BROKEN
28 endef
29
30 define Package/cython/description
31 Cython is a language that should make writing C extensions for the Python language easier
32 endef
33
34 define Build/Compile
35 # <--no-cython-compile> required, otherwise setup.py calls the target-gcc to create so-files which obviously can't be used by <python> on the host system.
36 $(call Build/Compile/PyMod,,install --no-cython-compile --prefix="$(PKG_INSTALL_DIR)/usr")
37 endef
38
39 define Build/InstallDev
40 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
41 $(CP) \
42 $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
43 $(1)$(PYTHON_PKG_DIR)
44 endef
45
46 $(eval $(call BuildPackage,cython))