5bf457025feaddde4009c1ce89cc5e65255f270e
[packages.git] / lang / pycairo / 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:=pycairo
11 PKG_VERSION:=1.4.12
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.cairographics.org/releases
16 PKG_BUILD_DEPENDS:=python cairo
17 PKG_FIXUP:=libtool
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/pycairo
22   SUBMENU:=Python
23   SECTION:=lang
24   CATEGORY:=Languages
25   TITLE:=Cairo bindings to python
26   URL:=http://www.cairographics.org/
27   DEPENDS:=python +cairo
28 endef
29
30 define Package/pycairo/description
31   cairo modul for python
32 endef
33
34 define Build/Configure
35         (cd $(PKG_BUILD_DIR); \
36                 if [ -x $(CONFIGURE_CMD) ]; then \
37                         $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/ && \
38                         $(CONFIGURE_VARS) \
39                         $(CONFIGURE_CMD) \
40                         $(CONFIGURE_ARGS) ;\
41                 fi \
42         )
43 endef
44
45 define Build/Compile
46         cd $(PKG_BUILD_DIR) ; DESTDIR=$(PKG_INSTALL_DIR) $(MAKE) all install
47 endef
48
49 define Build/InstallDev
50         mkdir -p $(1)
51         cp -r $(PKG_INSTALL_DIR)/* $(1)
52 endef
53
54 define Package/pycairo/install
55         mkdir -p $(1)
56         cp -r $(PKG_INSTALL_DIR)/* $(1)
57 endef
58
59 $(eval $(call BuildPackage,pycairo))