summaryrefslogtreecommitdiff
path: root/dev-cpp/argparse/argparse-2.9.ebuild
diff options
context:
space:
mode:
authorAlexey Shvetsov <alexxy@gentoo.org>2022-10-26 01:17:27 +0300
committerAlexey Shvetsov <alexxy@gentoo.org>2022-10-26 01:17:27 +0300
commitb8a373cc0afe6fda5331e3c20118bd89c3e899e7 (patch)
treeb63b6f96ab2a526df24a951335c7220cee4699e2 /dev-cpp/argparse/argparse-2.9.ebuild
parentc5297d4c579f20e2ba646edb80dde3574e65bc94 (diff)
downloadgentoo-b8a373cc0afe6fda5331e3c20118bd89c3e899e7.tar.gz
gentoo-b8a373cc0afe6fda5331e3c20118bd89c3e899e7.tar.bz2
gentoo-b8a373cc0afe6fda5331e3c20118bd89c3e899e7.zip
dev-cpp/argparse: add 2.9
Signed-off-by: Alexey Shvetsov <alexxy@gentoo.org>
Diffstat (limited to 'dev-cpp/argparse/argparse-2.9.ebuild')
-rw-r--r--dev-cpp/argparse/argparse-2.9.ebuild29
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-cpp/argparse/argparse-2.9.ebuild b/dev-cpp/argparse/argparse-2.9.ebuild
new file mode 100644
index 000000000000..e273fd49b506
--- /dev/null
+++ b/dev-cpp/argparse/argparse-2.9.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
+}