blob: f94799923ca4c79a5038fdb6a244459101c1c811 (
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
|
# Maintainer: KokaKiwi <kokakiwi+aur@kokakiwi.net>
pkgname=dwarfs
pkgver=0.10.2
pkgrel=1
pkgdesc="A fast high compression read-only file system"
url='https://github.com/mhx/dwarfs'
arch=('x86_64' 'aarch64')
license=('GPL-3.0-only')
depends=(
'fuse3' 'openssl' 'boost-libs' 'jemalloc' 'xxhash' 'fmt'
'lz4' 'xz' 'zstd' 'brotli' 'libarchive' 'flac'
'libunwind' 'google-glog' 'fmt' 'gflags' 'double-conversion'
)
makedepends=(
'cmake' 'ruby-ronn'
'python' 'python-mistletoe'
'boost' 'libevent' 'libdwarf' 'chrono-date'
'utf8cpp' 'range-v3' 'nlohmann-json'
'gtest' 'parallel-hashmap'
)
source=("$pkgname-$pkgver.tar.xz::https://github.com/mhx/dwarfs/releases/download/v$pkgver/dwarfs-$pkgver.tar.xz")
sha256sums=('36767290a39f92782e41daaa3eb45e39550ad1a4294a6d8365bc0f456f75f00c')
b2sums=('3d846f04b469ed1ff810ff36d337ddb8cf31f307ddf2b8b0de24703db75b2a2597e5c91c930f3e359b277b345c4f25e87fefa93e4269f3c20b32b5bd28a2948c')
build() {
# Setting up release flags manually here so we get to use `CMAKE_BUILD_TYPE=None`
# and keep makepkg-defined flags for build
# cf. https://wiki.archlinux.org/title/CMake_package_guidelines#Fixing_the_automatic_optimization_flag_override
export CFLAGS="$CFLAGS -DNDEBUG"
export CXXFLAGS="$CXXFLAGS -DNDEBUG"
# Disable ccache here since makepkg already handly this
cmake -B build -S "$pkgname-$pkgver" \
-W no-dev \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_BUILD_TYPE=None \
-D WITH_TESTS=ON \
-D PREFER_SYSTEM_ZSTD=ON \
-D PREFER_SYSTEM_XXHASH=ON \
-D PREFER_SYSTEM_LIBFMT=ON \
-D PREFER_SYSTEM_GTEST=ON \
-D DISABLE_CCACHE=ON \
-D DISABLE_MOLD=ON
cmake --build build
}
check() {
#TODO: Find a way to either load the `fuse` module for the tests or disable the tests only when `fuse` module is not
# loaded
# Also wtf with perfmon test??
cmake --build build --target test -- ARGS="-E '(dwarfs/tools_test\..*|dwarfsextract_test\.perfmon)'"
}
package() {
cmake --install build --prefix "$pkgdir/usr"
mv "$pkgdir/usr/sbin"/* "$pkgdir/usr/bin"
rm -rf "$pkgdir/usr/sbin"
install -Dm0644 "$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|