summaryrefslogtreecommitdiff
path: root/dev-cpp/argparse/argparse-2.6.ebuild
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-09-09 09:58:40 +0200
committerDavid Seifert <soap@gentoo.org>2022-09-09 09:58:40 +0200
commit7982ab213bbfbb749ad6da8a19ed91b2525f3d1e (patch)
treefb35ba889cc288ce1fd86a6605cdf2b8ad40b395 /dev-cpp/argparse/argparse-2.6.ebuild
parent1bd0cf3640ff5da4dc6235f5a5ed6d2130f02680 (diff)
downloadgentoo-7982ab213bbfbb749ad6da8a19ed91b2525f3d1e.tar.gz
gentoo-7982ab213bbfbb749ad6da8a19ed91b2525f3d1e.tar.bz2
gentoo-7982ab213bbfbb749ad6da8a19ed91b2525f3d1e.zip
dev-cpp/argparse: add 2.6, tests
Signed-off-by: Sam James <sam@gentoo.org> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-cpp/argparse/argparse-2.6.ebuild')
-rw-r--r--dev-cpp/argparse/argparse-2.6.ebuild29
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-cpp/argparse/argparse-2.6.ebuild b/dev-cpp/argparse/argparse-2.6.ebuild
new file mode 100644
index 000000000000..e273fd49b506
--- /dev/null
+++ b/dev-cpp/argparse/argparse-2.6.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2022 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
+}