Ryan Fox
27fe34c9a2
Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Ryan Fox <flewkey@2a03.party>
23 lines
416 B
Bash
23 lines
416 B
Bash
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="C library for symbolic backtraces"
|
|
HOMEPAGE="https://github.com/ianlancetaylor/libbacktrace"
|
|
EGIT_REPO_URI="https://github.com/ianlancetaylor/libbacktrace.git"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=""
|
|
|
|
src_compile() {
|
|
emake CFLAGS="-fPIC"
|
|
}
|