dev-cpp/rapidcheck: new package, add 0_pre20231214

This commit is contained in:
root 2024-05-07 16:24:52 +02:00
parent 5948749941
commit 1f5d6b75d8
3 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,26 @@
# Copyright 1999-2022 Gentoo 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=ff6af6fc683159deb51c543b065eba14dfcf329b
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-build/cmake
"
src_install() {
cmake_src_install
# used by sys-apps/nix
cp -rv "${S}"/extras ${ED}/usr/include/rapidcheck || die
}