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