diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-10-10 17:56:22 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-10-10 17:56:22 +0000 |
commit | a49d72d71381b332451d076a51fea2a6e385ceab (patch) | |
tree | edec12ba3d0ae97db74f6bcf0df3aeb5d7765c07 /package/libs/libiconv/Makefile | |
parent | 70749275330c71f0cbd4f815a1713923365d6d13 (diff) | |
download | upstream-a49d72d71381b332451d076a51fea2a6e385ceab.tar.gz upstream-a49d72d71381b332451d076a51fea2a6e385ceab.tar.bz2 upstream-a49d72d71381b332451d076a51fea2a6e385ceab.zip |
libiconv: move to trunk and add myself as maintainer
SVN-Revision: 33710
Diffstat (limited to 'package/libs/libiconv/Makefile')
-rw-r--r-- | package/libs/libiconv/Makefile | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/package/libs/libiconv/Makefile b/package/libs/libiconv/Makefile new file mode 100644 index 0000000000..232b273f4d --- /dev/null +++ b/package/libs/libiconv/Makefile @@ -0,0 +1,81 @@ +# +# Copyright (C) 2010-2012 OpenWrt.org +# +# This Makefile and the code shipped in src/ is free software, licensed +# under the GNU Lesser General Public License, version 2.1 and later. +# See src/COPYING for more information. +# +# Refer to src/COPYRIGHT for copyright statements on the source files. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=libiconv +PKG_RELEASE:=7 + +PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org> + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/host-build.mk + +define Package/libiconv + SECTION:=libs + CATEGORY:=Libraries + TITLE:=Tiny drop-in replacement for the GNU Character set conversion library +endef + +define Build/Prepare + $(INSTALL_DIR) $(PKG_BUILD_DIR) + $(CP) ./src/* $(PKG_BUILD_DIR)/ +endef + +define Build/Configure +endef + +define Build/Compile + $(TARGET_CC) -c $(PKG_BUILD_DIR)/iconv.c -o $(PKG_BUILD_DIR)/iconv.o -I$(PKG_BUILD_DIR)/include $(FPIC) + $(TARGET_CROSS)ar rcs $(PKG_BUILD_DIR)/libiconv.a $(PKG_BUILD_DIR)/iconv.o +endef + +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/lib/libiconv-stub/lib + $(INSTALL_DATA) $(PKG_BUILD_DIR)/libiconv.a $(1)/usr/lib/libiconv-stub/lib/ + + $(INSTALL_DIR) $(1)/usr/lib/libiconv-stub/include + $(INSTALL_DATA) $(PKG_BUILD_DIR)/include/iconv.h $(1)/usr/lib/libiconv-stub/include/ + + $(INSTALL_DIR) $(1)/usr/share/aclocal + $(INSTALL_DATA) $(PKG_BUILD_DIR)/m4/* $(1)/usr/share/aclocal/ +endef + +define Package/libiconv/install + $(INSTALL_DIR) $(1)/tmp + touch $(1)/tmp/.libiconv-placeholder +endef + +define Host/Prepare + mkdir -p $(HOST_BUILD_DIR) +endef + +define Host/Configure + +endef + +define Host/Compile + $(HOSTCC) -c src/iconv.c -o $(HOST_BUILD_DIR)/iconv.o -Isrc/include -fPIC + ar rcs $(HOST_BUILD_DIR)/libiconv.a $(HOST_BUILD_DIR)/iconv.o +endef + +define Host/Install + $(INSTALL_DIR) $(STAGING_DIR_HOST)/lib + $(INSTALL_DATA) $(HOST_BUILD_DIR)/libiconv.a $(STAGING_DIR_HOST)/lib/ + + $(INSTALL_DIR) $(STAGING_DIR_HOST)/include + $(INSTALL_DATA) ./src/include/iconv.h $(STAGING_DIR_HOST)/include/ + + $(INSTALL_DIR) $(STAGING_DIR_HOST)/share/aclocal + $(INSTALL_DATA) ./src/m4/* $(STAGING_DIR_HOST)/share/aclocal/ +endef + +$(eval $(call HostBuild)) +$(eval $(call BuildPackage,libiconv)) |