diff options
| author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-06-04 19:41:59 +0300 |
|---|---|---|
| committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-06-04 19:42:10 +0300 |
| commit | aa67102e80ac8f2f405967f79fc647721e798961 (patch) | |
| tree | 525e0d8557fd9dfe91d1b595e832418036a04431 /dev-cpp/argparse/argparse-3.0.ebuild | |
| parent | 2beccf786e1eb6af9a1fff636f146b4ce4916910 (diff) | |
| download | gentoo-aa67102e80ac8f2f405967f79fc647721e798961.tar.gz gentoo-aa67102e80ac8f2f405967f79fc647721e798961.tar.bz2 gentoo-aa67102e80ac8f2f405967f79fc647721e798961.zip | |
dev-cpp/argparse: add 3.0
Closes: https://bugs.gentoo.org/919143
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-cpp/argparse/argparse-3.0.ebuild')
| -rw-r--r-- | dev-cpp/argparse/argparse-3.0.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-cpp/argparse/argparse-3.0.ebuild b/dev-cpp/argparse/argparse-3.0.ebuild new file mode 100644 index 000000000000..478612f014e0 --- /dev/null +++ b/dev-cpp/argparse/argparse-3.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Argument Parser for Modern C++" +HOMEPAGE="https://github.com/p-ranav/argparse" +SRC_URI="https://github.com/p-ranav/argparse/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +src_configure() { + local mycmakeargs=( + -DARGPARSE_BUILD_TESTS=$(usex test) + ) + + cmake_src_configure +} + +src_test() { + cd "${BUILD_DIR}"/test || die + ./tests || die +} |
