[packages] massive: use $(INSTALL_DIR) instead of 'mkdir -p' in install and InstallDev
[openwrt/svn-archive/archive.git] / libs / libffi-sable / Makefile
1 #
2 # Copyright (C) 2006 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:=libffi-sable
11 PKG_VERSION:=3325
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://sablevm.org/download/snapshot/2005-01-21/
16 PKG_MD5SUM:=0c32eaaea0269c5fbe156fcd0be3e5bd
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/libffi-sable
21 SECTION:=libs
22 CATEGORY:=Libraries
23 TITLE:=Foreign Function Interface library (for sablevm)
24 DEPENDS:=@!TARGET_avr32
25 URL:=http://sources.redhat.com/libffi/
26 endef
27
28 define Package/libffi-sable/description
29 The libffi library provides a portable, high level programming
30 interface to various calling conventions. This allows a programmer to
31 call any function specified by a call interface description at run
32 time.
33 endef
34
35 TARGET_CFLAGS += $(FPIC)
36
37 define Build/Configure
38 $(call Build/Configure/Default, \
39 --enable-shared \
40 --enable-static \
41 --disable-debug \
42 )
43 endef
44
45 define Build/Compile
46 $(MAKE) -C $(PKG_BUILD_DIR) \
47 DESTDIR="$(PKG_INSTALL_DIR)" \
48 all install
49 endef
50
51 define Build/InstallDev
52 $(INSTALL_DIR) $(1)/usr/include
53 $(CP) $(PKG_INSTALL_DIR)/usr/include/ffi{,target}.h $(1)/usr/include/
54 $(INSTALL_DIR) $(1)/usr/lib
55 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libffi.{a,so*} $(1)/usr/lib/
56 endef
57
58 define Package/libffi-sable/install
59 $(INSTALL_DIR) $(1)/usr/lib
60 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libffi.so.* $(1)/usr/lib/
61 endef
62
63 $(eval $(call BuildPackage,libffi-sable))