Files
Arch-R/packages/debug/libunwind/package.mk

24 lines
839 B
Makefile
Raw Normal View History

# SPDX-License-Identifier: GPL-2.0
2018-07-16 20:45:36 +02:00
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="libunwind"
2021-12-01 09:53:12 +00:00
PKG_VERSION="1.6.2"
PKG_SHA256="4a6aec666991fb45d0889c44aede8ad6eb108071c3554fcdff671f9c94794976"
PKG_LICENSE="GPL"
PKG_SITE="http://www.nongnu.org/libunwind/"
PKG_URL="http://download.savannah.nongnu.org/releases/libunwind/libunwind-${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain zlib"
PKG_LONGDESC="library to determine the call-chain of a program"
2020-02-16 04:23:53 +00:00
PKG_BUILD_FLAGS="+pic"
2021-07-18 08:20:39 +00:00
PKG_TOOLCHAIN="autotools"
PKG_CONFIGURE_OPTS_TARGET="--enable-static \
2020-02-16 04:23:53 +00:00
--disable-shared \
--disable-minidebuginfo \
--disable-documentation \
--disable-tests"
makeinstall_target() {
make DESTDIR=${SYSROOT_PREFIX} install
}