OpenWrt – Diff between revs 2 and 3

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 2 Rev 3
Line 8... Line 8...
8   8  
Line 9... Line 9...
9 include $(TOPDIR)/rules.mk 9 include $(TOPDIR)/rules.mk
10   10  
11 PKG_NAME:=libunwind 11 PKG_NAME:=libunwind
Line 12... Line 12...
12 PKG_VERSION:=1.2.1 12 PKG_VERSION:=1.2.1
13 PKG_RELEASE:=3 13 PKG_RELEASE:=2
14   14  
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz 15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
Line 31... Line 31...
31 SECTION:=libs 31 SECTION:=libs
32 CATEGORY:=Libraries 32 CATEGORY:=Libraries
33 TITLE:=The libunwind project 33 TITLE:=The libunwind project
34 URL:=http://www.nongnu.org/libunwind/ 34 URL:=http://www.nongnu.org/libunwind/
35 DEPENDS:=@(mips||mipsel||powerpc||i386||x86_64||arm||aarch64) 35 DEPENDS:=@(mips||mipsel||powerpc||i386||x86_64||arm||aarch64)
36 ABI_VERSION:=8 -  
37 endef 36 endef
Line 38... Line 37...
38   37  
39 define Package/libunwind/description 38 define Package/libunwind/description
40 Libunwind defines a portable and efficient C programming interface (API) to determine the call-chain of a program. 39 Libunwind defines a portable and efficient C programming interface (API) to determine the call-chain of a program.
Line 45... Line 44...
45 --enable-minidebuginfo=no \ 44 --enable-minidebuginfo=no \
Line 46... Line 45...
46   45  
47   46  
48 define Package/libunwind/install 47 define Package/libunwind/install
49 $(INSTALL_DIR) $(1)/usr/lib 48 $(INSTALL_DIR) $(1)/usr/lib
Line 50... Line 49...
50 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so.* $(1)/usr/lib/ 49 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so* $(1)/usr/lib/
51 endef 50 endef
52   51