summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 58e13e9dc1d690db7c045a51d93d4f710bc5a1f4 (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
77
78
79
80
81
82
83
# Maintainer: Carl Smedstad <carsme@archlinux.org>
# Maintainer: László Várady <laszlo.varady93@gmail.com>
# Contributor: Aleksandar Trifunović <akstrfn at gmail dot com>

pkgname=fizz
pkgver=2024.04.22.00
pkgrel=1
pkgdesc="C++14 implementation of the TLS-1.3 standard"
arch=(x86_64)
url="https://github.com/facebookincubator/fizz"
license=(BSD-3-Clause)
depends=(
  double-conversion
  fmt
  folly
  gcc-libs
  gflags
  glibc
  google-glog
  libsodium
  openssl
  zlib
  zstd
)
makedepends=(
  boost
  cmake
  gtest
)
provides=(
  libfizz.so
  libfizz_test_support.so
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('2dbd517efb9fe88335d49ffac6793d3e3c7156c47e1b228cccc541b4a314a67f')

_archive="$pkgname-$pkgver"

prepare() {
  cd "$_archive/fizz"

  # Use system CMake config instead of bundled module, incompatible with glog
  # v0.7.0+
  sed -i 's/find_package(Glog REQUIRED)/find_package(Glog CONFIG REQUIRED)/' \
    CMakeLists.txt
}

build() {
  cd "$_archive/fizz"

  cmake -S . -B build \
    -DCMAKE_BUILD_TYPE=None \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -Wno-dev \
    -DBUILD_TESTS=ON \
    -DBUILD_SHARED_LIBS=ON \
    -DPACKAGE_VERSION="$pkgver"
  cmake --build build
}

check() {
  cd "$_archive/fizz"

  # Skip failing tests - not sure why they fail
  local skipped_tests=(
    DefaultCertificateVerifierTest
    SlidingBloomReplayCacheTest
  )
  local skipped_tests_pattern="${skipped_tests[0]}$(printf "|%s" "${skipped_tests[@]:1}")"
  ctest --test-dir build --output-on-failure -E "$skipped_tests_pattern"
}

package() {
  cd "$_archive"

  DESTDIR="$pkgdir" cmake --install "$pkgname/build"

  # Remove empty directories to avoid namcap warnings
  rm -r "$pkgdir/usr/include/fizz/tool/test"
  rm -r "$pkgdir/usr/include/fizz/util/test"

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