summaryrefslogtreecommitdiff
path: root/dev-cpp/sentry-native/sentry-native-0.6.3.ebuild
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2023-05-31 23:03:20 -0400
committerCara Salter <cara@devcara.com>2023-05-31 23:03:20 -0400
commit9b3b9b78979af2a67391790dc77e69ecc5a043ca (patch)
treed9ca35718581c6f51f5d72316f0b63ac1cb782f3 /dev-cpp/sentry-native/sentry-native-0.6.3.ebuild
parentc3026abea5551d6fe4322c367c7257ab49bc53b8 (diff)
downloadgentoo-mirror-master.tar.gz
gentoo-mirror-master.zip
dev-cpp/sentry-native: new version 0.6.3HEADmaster
Diffstat (limited to 'dev-cpp/sentry-native/sentry-native-0.6.3.ebuild')
-rw-r--r--dev-cpp/sentry-native/sentry-native-0.6.3.ebuild26
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-cpp/sentry-native/sentry-native-0.6.3.ebuild b/dev-cpp/sentry-native/sentry-native-0.6.3.ebuild
new file mode 100644
index 0000000..21989fa
--- /dev/null
+++ b/dev-cpp/sentry-native/sentry-native-0.6.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Sentry SDK for C, C++, and Native applications"
+HOMEPAGE="https://sentry.io"
+SRC_URI="https://github.com/getsentry/sentry-native/archive/refs/tags/${PV}.tar.gz"
+
+inherit cmake
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="dev-util/breakpad"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_configure() {
+ local mycmakeargs=(
+ "-DSENTRY_BREAKPAD_SYSTEM=On"
+ )
+
+ cmake_src_configure
+}