immortalwrt/package/libs/libunwind/Makefile

63 lines
1.7 KiB
Makefile
Raw Normal View History

2017-09-06 19:19:45 +08:00
#
# Copyright (C) 2008-2013 OpenWrt.org
2020-03-28 23:37:17 +08:00
# Copyright (C) 2017-2019 Yousong Zhou <yszhou4tech@gmail.com>
2017-09-06 19:19:45 +08:00
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libunwind
PKG_VERSION:=1.5.0
2020-03-28 23:37:17 +08:00
PKG_RELEASE:=1
2017-09-06 19:19:45 +08:00
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SAVANNAH/$(PKG_NAME)
PKG_HASH:=90337653d92d4a13de590781371c604f9031cdb50520366aa1e3a91e1efb1017
2017-09-06 19:19:45 +08:00
PKG_MAINTAINER:=Yousong Zhou <yszhou4tech@gmail.com>
2017-09-06 19:19:45 +08:00
PKG_LICENSE:=X11
PKG_LICENSE_FILES:=LICENSE
2018-01-15 18:26:41 +08:00
PKG_CPE_ID:=cpe:/a:libunwind_project:libunwind
2017-09-06 19:19:45 +08:00
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
2017-09-06 19:19:45 +08:00
include $(INCLUDE_DIR)/package.mk
define Package/libunwind
SECTION:=libs
CATEGORY:=Libraries
TITLE:=The libunwind project
URL:=http://www.nongnu.org/libunwind/
DEPENDS:=@((mips||mipsel||mips64||x86_64||arm||aarch64)||(USE_GLIBC&&(powerpc||i386))) +zlib
2020-03-28 23:37:17 +08:00
ABI_VERSION:=8
2017-09-06 19:19:45 +08:00
endef
define Package/libunwind/description
Libunwind defines a portable and efficient C programming interface (API) to determine the call-chain of a program.
endef
CONFIGURE_ARGS += \
--disable-documentation \
2020-03-28 23:37:17 +08:00
--disable-tests \
--disable-minidebuginfo
2017-09-06 19:19:45 +08:00
TARGET_LDFLAGS += $(if $(CONFIG_USE_MUSL),-lssp_nonshared)
2017-09-06 19:19:45 +08:00
define Package/libunwind/install
$(INSTALL_DIR) $(1)/usr/lib
2020-03-28 23:37:17 +08:00
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so.* $(1)/usr/lib/
2017-09-06 19:19:45 +08:00
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib/pkgconfig
$(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so* $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
endef
$(eval $(call BuildPackage,libunwind))