remove UninstallDev
[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 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/libffi-sable
25 SECTION:=libs
26 CATEGORY:=Libraries
27 TITLE:=Foreign Function Interface library (for sablevm)
28 URL:=http://sources.redhat.com/libffi/
29 endef
30
31 define Package/libffi-sable/description
32 The libffi library provides a portable, high level programming
33 interface to various calling conventions. This allows a programmer to
34 call any function specified by a call interface description at run
35 time.
36 endef
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))