blob: de1d69d6afbefdc90dd7133dfd74b6cea836da24 (
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
|
# Maintainer: Carl Smedstad <carsme@archlinux.org>
pkgname=edencommon
pkgver=2024.10.28.00
pkgrel=1
pkgdesc="Shared library for Watchman and Eden projects"
arch=(x86_64)
url="https://github.com/facebookexperimental/edencommon"
license=(MIT)
depends=(
boost-libs
fb303
fmt
folly
gcc-libs
glibc
google-glog
)
makedepends=(
boost
cmake
gtest
mvfst
)
provides=(
libedencommon_os.so
libedencommon_telemetry.so
libedencommon_testharness.so
libedencommon_utils.so
)
options=(!lto)
source=(
"$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
"build-shared-libraries.patch"
)
sha256sums=(
'28b8e2029f8d9d8039d13cd25d6901e1b48127fae8a3b7ed944fb6fea6ecafc2'
'1f351de94a786c8be397c07454a48d28a0dd0b758924792e6e3f1f49405c492a'
)
prepare() {
cd $pkgname-$pkgver
patch -Np1 -i ../build-shared-libraries.patch
# Use system CMake config instead of bundled module
sed -i 's/find_package(Glog MODULE REQUIRED)/find_package(Glog CONFIG REQUIRED)/' \
CMakeLists.txt
}
build() {
cd $pkgname-$pkgver
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-Wno-dev
cmake --build build
}
check() {
cd $pkgname-$pkgver
ctest --test-dir build --output-on-failure -E UnixSocket.sendDataAndFiles
}
package() {
cd $pkgname-$pkgver
DESTDIR="$pkgdir" cmake --install build
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}
|