Fix cups build.
[openwrt/svn-archive/archive.git] / lang / numpy / 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=numpy
11 PKG_VERSION:=1.0.4
12 PKG_RELEASE:=1
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14 PKG_SOURCE_URL:=http://downloads.sourceforge.net/numpy/
15 PKG_MD5SUM:=8f011e9d7697da570efaac61c51725e0
16
17 include $(INCLUDE_DIR)/package.mk
18
19 define Package/numpy
20 SUBMENU:=Python
21 SECTION:=lang
22 CATEGORY:=Languages
23 TITLE:=numpy
24 URL:=http://numpy.sf.net
25 DEPENDS:=python-core @TARGET_x86||TARGET_olpc||TARGET_uml
26 endef
27
28 define Package/numpy/description
29 API to GTK and glade library from python
30 endef
31
32 define Build/Compile
33 cd $(PKG_BUILD_DIR) ; $(CONFIGURE_VARS) $(MAKE_VARS) python2.5 ./setup.py install --prefix="$(PKG_INSTALL_DIR)/usr"
34 sed -i "s/UCS4/UCS2/g" $(PKG_INSTALL_DIR)/usr/lib/python2.5/site-packages/numpy/core/multiarray.so
35 endef
36
37 define Package/numpy/install
38 mkdir -p $(1)
39 cp -r $(PKG_INSTALL_DIR)/* $(1)
40 endef
41
42 $(eval $(call BuildPackage,numpy))
43
44 define Require/python25-dev
45 [ -e /usr/include/python2.5/pyconfig.h ]
46 endef
47
48 $(eval $(call Require,python25-dev, \
49 Please install Python 2.5 (including development headers and libraries) \
50 ))