blob: c5dc6af82a5e8c1548a8d15d3492573bd19e47d0 (
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 2023-2024 BaldEagleOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake vcs-snapshot
DESCRIPTION="Property based testing framework inspired by QuickCheck"
HOMEPAGE="https://github.com/emil-e/rapidcheck"
COMMIT_ID=1505cbbce733bde3b78042cf2e9309c0b7f227a2
SRC_URI="https://github.com/emil-e/rapidcheck/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="
dev-buold/cmake
"
src_install() {
cmake_src_install
# used by sys-apps/nix
cp -rv "${S}"/extras ${ED}/usr/include/rapidcheck || die
}
|