c676d501bd5d9126e675085039e16412e6158982
[openwrt/openwrt.git] / package / libs / libunwind / Makefile
1 #
2 # Copyright (C) 2008-2013 OpenWrt.org
3 # Copyright (C) 2017-2019 Yousong Zhou <yszhou4tech@gmail.com>
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=libunwind
12 PKG_VERSION:=1.6.2
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SAVANNAH/$(PKG_NAME)
17 PKG_HASH:=4a6aec666991fb45d0889c44aede8ad6eb108071c3554fcdff671f9c94794976
18
19 PKG_MAINTAINER:=Yousong Zhou <yszhou4tech@gmail.com>
20 PKG_LICENSE:=X11
21 PKG_LICENSE_FILES:=LICENSE
22 PKG_CPE_ID:=cpe:/a:libunwind_project:libunwind
23
24 PKG_FIXUP:=autoreconf
25 PKG_INSTALL:=1
26 PKG_BUILD_PARALLEL:=1
27
28 include $(INCLUDE_DIR)/package.mk
29
30 define Package/libunwind
31 SECTION:=libs
32 CATEGORY:=Libraries
33 TITLE:=The libunwind project
34 URL:=http://www.nongnu.org/libunwind/
35 DEPENDS:=@((mips||mipsel||mips64||powerpc64||x86_64||arm||aarch64)||(USE_GLIBC&&(powerpc||i386))) +zlib
36 ABI_VERSION:=8
37 endef
38
39 define Package/libunwind/description
40 Libunwind defines a portable and efficient C programming interface (API) to determine the call-chain of a program.
41 endef
42
43 CONFIGURE_ARGS += \
44 --disable-documentation \
45 --disable-tests \
46 --disable-minidebuginfo
47
48 TARGET_LDFLAGS += $(if $(CONFIG_USE_MUSL),-lssp_nonshared)
49
50 define Package/libunwind/install
51 $(INSTALL_DIR) $(1)/usr/lib
52 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so.* $(1)/usr/lib/
53 endef
54
55 define Build/InstallDev
56 $(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib/pkgconfig
57 $(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include
58 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so* $(1)/usr/lib
59 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
60 endef
61
62 $(eval $(call BuildPackage,libunwind))