mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
Just add a patch so that the elfutils executables (eu-ar, eu-nm, ...) aren't built/installed and use upstream build otherwise. Signed-off-by: Matthias Reichl <hias@horus.com>
28 lines
1.1 KiB
Makefile
28 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="elfutils"
|
|
PKG_VERSION="0.176"
|
|
PKG_SHA256="eb5747c371b0af0f71e86215a5ebb88728533c3a104a43d4231963f308cd1023"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://sourceware.org/elfutils/"
|
|
PKG_URL="https://sourceware.org/elfutils/ftp/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
|
PKG_DEPENDS_HOST="make:host zlib:host"
|
|
PKG_DEPENDS_TARGET="toolchain zlib elfutils:host"
|
|
PKG_LONGDESC="A collection of utilities to handle ELF objects."
|
|
PKG_TOOLCHAIN="autotools"
|
|
PKG_BUILD_FLAGS="+pic"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="utrace_cv_cc_biarch=false \
|
|
--disable-nls \
|
|
--with-zlib \
|
|
--without-bzlib \
|
|
--without-lzma"
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="utrace_cv_cc_biarch=false \
|
|
--disable-nls \
|
|
--with-zlib \
|
|
--without-bzlib \
|
|
--without-lzma"
|