OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #
2 # Copyright (C) 2006-2015 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7  
8 include $(TOPDIR)/rules.mk
9  
10 PKG_NAME:=libiconv-full
11 PKG_VERSION:=1.11.1
3 office 12 PKG_RELEASE:=3
1 office 13  
14 PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
15  
16 PKG_SOURCE:=libiconv-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=@GNU/libiconv
18 PKG_HASH:=e78c347a1a0cb15f2648519e9799151f4b4a934b61ad9ee7424478efe2b8257f
19 PKG_BUILD_DIR:=$(BUILD_DIR)/libiconv-$(PKG_VERSION)
20 PKG_LICENSE:=LGPL-2.0
21 PKG_LICENSE_FILES:=COPYING.LIB
22  
23 PKG_FIXUP:=patch-libtool
24  
25 include $(INCLUDE_DIR)/package.mk
26  
27 define Package/libiconv-full/Default
28 URL:=http://www.gnu.org/software/libiconv/
29 TITLE:=Character set conversion
30 endef
31  
32 define Package/libiconv-full
33 $(call Package/libiconv-full/Default)
34 SECTION:=libs
35 CATEGORY:=Libraries
36 TITLE+= library
37 endef
38  
39 define Package/libcharset
40 $(call Package/libiconv-full/Default)
41 SECTION:=libs
42 CATEGORY:=Libraries
43 TITLE+= library
44 endef
45  
46 define Package/iconv
47 $(call Package/libiconv-full/Default)
48 DEPENDS:=+libiconv-full +libcharset
49 SECTION:=utils
50 CATEGORY:=Utilities
51 TITLE+= utility
52 endef
53  
54 TARGET_CFLAGS += $(FPIC) -DUSE_DOS -std=gnu89
55  
56 CONFIGURE_ARGS += \
57 --enable-shared \
58 --enable-static \
59 --disable-rpath \
60 --enable-relocatable
61  
62 define Build/Compile
63 $(MAKE) -C $(PKG_BUILD_DIR) \
64 CC="$(TARGET_CC)" \
65 DESTDIR="$(PKG_INSTALL_DIR)" \
66 install
67 endef
68  
69 define Build/InstallDev
70 $(INSTALL_DIR) $(1)/usr/lib/libiconv-full/include
71 $(CP) $(PKG_INSTALL_DIR)/usr/include/iconv.h $(1)/usr/lib/libiconv-full/include/
72  
73 $(INSTALL_DIR) $(1)/usr/lib/libiconv-full/lib
74 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcharset.{a,so*} $(1)/usr/lib/libiconv-full/lib/
75 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libiconv.{a,so*} $(1)/usr/lib/libiconv-full/lib/
76 endef
77  
78 define Package/libcharset/install
79 $(INSTALL_DIR) $(1)/usr/lib
3 office 80 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcharset.so* $(1)/usr/lib/
1 office 81 endef
82  
83 define Package/libiconv-full/install
84 $(INSTALL_DIR) $(1)/usr/lib
3 office 85 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libiconv.so* $(1)/usr/lib/
1 office 86 endef
87  
88 define Package/iconv/install
89 $(INSTALL_DIR) $(1)/usr/bin
90 $(CP) $(PKG_INSTALL_DIR)/usr/bin/iconv $(1)/usr/bin/
91 endef
92  
93 $(eval $(call BuildPackage,libcharset))
94 $(eval $(call BuildPackage,libiconv-full))
95 $(eval $(call BuildPackage,iconv))