From 2b8e304533c1ed0cb318d05275255ec68cdf316e Mon Sep 17 00:00:00 2001 From: Xiangfu Liu Date: Thu, 18 Nov 2010 22:50:43 +0800 Subject: [PATCH] add libparserutils Signed-off-by: Xiangfu Liu --- libparserutils/Makefile | 46 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 libparserutils/Makefile diff --git a/libparserutils/Makefile b/libparserutils/Makefile new file mode 100644 index 0000000..5b15692 --- /dev/null +++ b/libparserutils/Makefile @@ -0,0 +1,46 @@ +include $(TOPDIR)/rules.mk + + +PKG_NAME:=libparserutils +PKG_VERSION:=0.0.2 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-src.tar.gz +PKG_SOURCE_URL:=http://www.netsurf-browser.org/projects/releases/ +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +define Package/libparserutils + SECTION:=libs + CATEGORY:=Libraries + TITLE:=LibParserUtils has some built-in charset converters + URL:=http://www.netsurf-browser.org/projects/libparserutils/ +endef + +define Package/libparserutils/description + LibParserUtils has the following built-in charset converters. UTF-8, UTF-16 (platform-native endian), ISO-8859-n, Windows-125n, US-ASCII. +endef + +define Build/Compile + rm -rf $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + COMPONENT_TYPE=lib-shared \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install +endef + + +define Build/InstallDev + mkdir -p $(1)/usr/include + #$(CP) $(PKG_INSTALL_DIR)/usr/local/include/physfs.h $(1)/usr/include/ + mkdir -p $(1)/usr/lib + #$(CP) $(PKG_INSTALL_DIR)/usr/local/lib/libparserutils.so* $(1)/usr/lib/ +endef + +define Package/libparserutils/install + #$(INSTALL_DIR) $(1)/usr/lib + #$(CP) $(PKG_BUILD_DIR)/libparserutils.so* $(1)/usr/lib/ +endef + +$(eval $(call BuildPackage,libparserutils))