summaryrefslogtreecommitdiff
path: root/dev-cpp/sentry-native/sentry-native-0.6.3.ebuild
diff options
context:
space:
mode:
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
+}