mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-15 12:54:15 +01:00
24 lines
552 B
Bash
24 lines
552 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="The DWARF Debugging Information Format"
|
|
HOMEPAGE="https://www.prevanders.net/dwarf.html"
|
|
SRC_URI="https://www.prevanders.net/alpha-${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="virtual/libelf"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install(){
|
|
emake DESTDIR="${D}" install
|
|
|
|
# doheader libdwarf/dwarf.h libdwarf/dwarf.h
|
|
insinto /usr/include/libdwarf
|
|
doins libdwarf/dwarf.h libdwarf/libdwarf.h
|
|
}
|