summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 88f563a961f60bfd5ccfd5ac103e14cdcde2a411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Maintainer: Carl Smedstad <carl.smedstad at protonmail dot com>

pkgname=sentry-native
pkgver=0.6.7
pkgrel=2
pkgdesc="Sentry SDK for C, C++ and native applications"
arch=(x86_64)
url="https://github.com/getsentry/sentry-native"
license=(MIT)
depends=(
  curl
  gcc-libs
  glibc
)
makedepends=(
  cmake
  git
)
checkdepends=(
  python-pytest
  python-msgpack
)

_tag=a3d58622a807b9dda174cb9fc18fa0f98c89d043 # git rev-parse "$pkgver"
source=("git+$url.git#tag=$_tag")
sha256sums=('SKIP')

_archive="$pkgname"

pkgver() {
  cd "$_archive"

  git describe --tags
}

prepare() {
  cd "$_archive"

  git submodule update --init --recursive
}

build() {
  cd "$_archive"

  cmake -S . -B build \
    -DCMAKE_BUILD_TYPE=None \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -Wno-dev \
    -DSENTRY_BUILD_TESTS=ON
  cmake --build build
}

check() {
  cd "$_archive"

  # Skip tests failing in a chroot - not sure why
  ./build/tests/unit/sentry_test_unit --skip \
    build_id_parser \
    fuzz_json

  python -m pytest \
    --ignore="external/crashpad/test/win" \
    --ignore="external/crashpad/snapshot/win/" \
    --ignore="tests/test_build_static.py" \
    --ignore="tests/test_integration_crashpad.py" \
    --ignore="tests/test_integration_http.py" \
    --ignore="tests/test_integration_ratelimits.py"
}

package() {
  cd "$_archive"

  DESTDIR="$pkgdir" cmake --install build

  install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}