blob: 297eef5827d3277afacd306b8f4dd49a0301b3ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 2022 BaldEagleOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="CTF library used by DTrace on Linux"
HOMEPAGE="https://github.com/oracle/libdtrace-ctf"
SRC_URI="https://github.com/oracle/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE=""
DEPEND="
${RDEPEND}
virtual/os-headers
"
RDEPEND="
dev-libs/elfutils
sys-libs/zlib
"
#src_unpack() {
# unpack ${A}
#}
|