forked from libretro/Lakka-LibreELEC
24 lines
839 B
Makefile
24 lines
839 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="libunwind"
|
|
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"
|
|
PKG_BUILD_FLAGS="+pic"
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-static \
|
|
--disable-shared \
|
|
--disable-minidebuginfo \
|
|
--disable-documentation \
|
|
--disable-tests"
|
|
|
|
makeinstall_target() {
|
|
make DESTDIR=${SYSROOT_PREFIX} install
|
|
}
|