OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #
2 # Copyright (C) 2006-2010 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:=popt
11 PKG_VERSION:=1.16
3 office 12 PKG_RELEASE:=1
1 office 13  
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
3 office 15 PKG_SOURCE_URL:=http://rpm5.org/files/popt/
1 office 16 PKG_HASH:=e728ed296fe9f069a0e005003c3d6b2dde3d9cad453422a10d6558616d304cc8
17 PKG_LICENSE:=MIT
18  
19 PKG_FIXUP:=autoreconf
20 PKG_REMOVE_FILES:=autogen.sh aclocal.m4
21  
22 PKG_INSTALL:=1
23 PKG_BUILD_PARALLEL:=1
24  
25 include $(INCLUDE_DIR)/package.mk
26  
27 TARGET_CFLAGS += $(FPIC)
28  
29 define Package/libpopt
30 SECTION:=libs
31 CATEGORY:=Libraries
32 TITLE:=A command line option parsing library
33 URL:=http://rpm5.org/files/popt/
34 endef
35  
3 office 36 define Build/Configure
37 $(call Build/Configure/Default, \
38 --enable-shared \
39 --enable-static \
40 )
41 endef
1 office 42  
43 define Build/InstallDev
44 $(INSTALL_DIR) $(1)/usr/include
45 $(CP) $(PKG_INSTALL_DIR)/usr/include/popt.h $(1)/usr/include/
46 $(INSTALL_DIR) $(1)/usr/lib
47 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpopt.{a,so*} $(1)/usr/lib/
48 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
49 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/popt.pc $(1)/usr/lib/pkgconfig/
50 endef
51  
52 define Package/libpopt/install
53 $(INSTALL_DIR) $(1)/usr/lib
54 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpopt.so.* $(1)/usr/lib/
55 endef
56  
57 $(eval $(call BuildPackage,libpopt))
58