Makefile cleanups, round 5
[openwrt/svn-archive/archive.git] / libs / ustl / 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:=ustl
12 PKG_VERSION:=0.8
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
16 PKG_SOURCE:=$(PKG_NAME)-0.8-0.tar.bz2
17 PKG_SOURCE_URL:=@SF/ustl
18 PKG_MD5SUM:=dd59483c327f1bd1356273bc5ae4dde0
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/ustl
23 SECTION:=libs
24 CATEGORY:=Libraries
25 TITLE:=C++ STL for embedded systems
26 URL:=http://ustl.sourceforge.net/
27 endef
28
29 define Package/ustl/description
30 C++ Standard Template Library (STL) for embedded systems.\\\
31 uSTL is a partial implementation of the STL (Standard Template \\\
32 Library) that reduces code size by factoring memory management \\\
33 code into a non-template base class and deriving containers \\\
34 from it.
35 endef
36
37 define Build/Configure
38 $(CP) ./files/config.h $(PKG_BUILD_DIR)/
39 $(CP) ./files/Common.mk $(PKG_BUILD_DIR)/
40 endef
41
42 define Build/Compile
43 rm -rf $(PKG_INSTALL_DIR)
44 mkdir -p $(PKG_INSTALL_DIR)
45 $(MAKE) -C $(PKG_BUILD_DIR) \
46 CROSS="$(TARGET_CROSS)" \
47 OPTFLAGS="$(TARGET_CFLAGS)" \
48 DESTDIR="$(PKG_INSTALL_DIR)" \
49 all install
50 endef
51
52 define Package/ustl/install
53 $(INSTALL_DIR) $(1)/usr/lib
54 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libustl.so.* $(1)/usr/lib/
55 endef
56
57 define Build/InstallDev
58 mkdir -p $(1)/usr/include
59 $(CP) $(PKG_INSTALL_DIR)/usr/include/ustl* $(1)/usr/include/
60 mkdir -p $(1)/usr/lib
61 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libustl.{a,so*} $(1)/usr/lib/
62 endef
63
64 $(eval $(call BuildPackage,ustl))