1120328d15
git-svn-id: svn://svn.openwrt.org/openwrt/packages@9173 3c298f89-4303-0410-b956-a3cf2f4a3e73
71 lines
1.5 KiB
Makefile
71 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=expat
|
|
PKG_VERSION:=1.95.8
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_MD5SUM:=aff487543845a82fe262e6e2922b4c8e
|
|
PKG_SOURCE_URL:=@SF/expat
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
define Package/libexpat
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=An XML parsing library
|
|
URL:=http://expat.sourceforge.net/
|
|
endef
|
|
|
|
define Package/libexpat/description
|
|
A fast, non-validating, stream-oriented XML parsing library.
|
|
endef
|
|
|
|
|
|
PKG_CONFIGURE_ARGS += \
|
|
--enable-shared \
|
|
--enable-static \
|
|
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default)
|
|
$(call libtool_disable_rpath)
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) all
|
|
$(call libtool_fixup_libdir,$(PKG_INSTALL_DIR))
|
|
$(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" install
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
mkdir -p $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/expat{,_external}.h $(1)/usr/include/
|
|
mkdir -p $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libexpat.{a,so*} $(1)/usr/lib/
|
|
endef
|
|
|
|
define Build/UninstallDev
|
|
rm -rf $(STAGING_DIR)/usr/include/expat{,_external}.h \
|
|
$(STAGING_DIR)/usr/lib/libexpat.{a,so*}
|
|
endef
|
|
|
|
|
|
define Package/libexpat/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libexpat.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
|
|
$(eval $(call BuildPackage,libexpat))
|
|
|