app-benchmarks/load-time - 9999 (schplaf)

Search

Package Information

Description:
Program that mesures the time it takes to load a shared library
Homepage:
https://github.com/serge-sans-paille/load-time
License:
BSD-3-Clause

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 0
View Raw Ebuild
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
inherit git-r3

DESCRIPTION="Program that mesures the time it takes to load a shared library"
HOMEPAGE="https://github.com/serge-sans-paille/load-time"
EGIT_REPO_URI="https://github.com/serge-sans-paille/${PN}"

LICENSE="BSD-3-Clause"
SLOT="0"
KEYWORDS="~amd64"

DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND="sys-devel/gcc"

DOCS=( README.rst LICENSE )

src_prepare() {
	default
}

src_compile() {
	emake 
}

src_install() {
	exeinto "/usr/bin"
	doexe ${PN}
	dodoc ${DOCS}
}

Dependencies

BDEPEND

sys-devel/gcc