mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
24 lines
833 B
Makefile
24 lines
833 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="libunwind"
|
|
PKG_VERSION="1.7.2"
|
|
PKG_SHA256="c76c4f340071ede486af6342d50e17747f7b0db1c05077c8f7c677c09b324f73"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://www.nongnu.org/libunwind/"
|
|
PKG_URL="https://github.com/libunwind/libunwind/archive/refs/tags/v${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
|
|
}
|