upgrade expat to 2.0.1
[openwrt/svn-archive/archive.git] / libs / expat / 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:=expat
12 PKG_VERSION:=2.0.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_MD5SUM:=ee8b492592568805593f81f8cdf2a04c
17 PKG_SOURCE_URL:=@SF/expat
18
19 PKG_FIXUP = libtool
20
21 include $(INCLUDE_DIR)/package.mk
22
23
24 define Package/libexpat
25 SECTION:=libs
26 CATEGORY:=Libraries
27 TITLE:=An XML parsing library
28 URL:=http://expat.sourceforge.net/
29 endef
30
31 define Package/libexpat/description
32 A fast, non-validating, stream-oriented XML parsing library.
33 endef
34
35
36 TARGET_CFLAGS += $(FPIC)
37
38 CONFIGURE_ARGS += \
39 --enable-shared \
40 --enable-static
41
42 define Build/Compile
43 $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" install
44 endef
45
46 define Build/InstallDev
47 mkdir -p $(1)/usr/include
48 $(CP) $(PKG_INSTALL_DIR)/usr/include/expat{,_external}.h $(1)/usr/include/
49 mkdir -p $(1)/usr/lib
50 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libexpat.{a,so*} $(1)/usr/lib/
51 endef
52
53 define Package/libexpat/install
54 $(INSTALL_DIR) $(1)/usr/lib
55 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libexpat.so.* $(1)/usr/lib/
56 endef
57
58
59 $(eval $(call BuildPackage,libexpat))
60