mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01:00
23 lines
556 B
Bash
23 lines
556 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="The DWARF Debugging Information Format"
|
|
HOMEPAGE="https://www.prevanders.net/dwarf.html"
|
|
SRC_URI="https://www.prevanders.net/${P}.tar.xz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 x86"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
#Upstream: The libelf interfaces and declarations and code should be removed
|
|
econf --disable-libelf --includedir="${EPREFIX}/usr/include/${PN}"
|
|
}
|
|
|
|
src_install(){
|
|
emake DESTDIR="${D}" install
|
|
}
|