blob: faac633d4f2f26d9cad590842a07a03082ecb3e0 (
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
|
# Maintainer: KokaKiwi <kokakiwi+aur@kokakiwi.net>
_pkgname=dwarfs
pkgname=${_pkgname}-git
pkgver=0.2.3.r1.gbdd4b84
pkgrel=1
pkgdesc="A fast high compression read-only file system"
url='https://github.com/mhx/dwarfs'
arch=('x86_64')
license=('GPL3')
depends=(
'fuse3' 'openssl' 'boost-libs'
'lz4' 'xz' 'zstd'
'libunwind' 'google-glog' 'fmt' 'gflags' 'double-conversion'
)
makedepends=('git' 'cmake' 'sparsehash' 'ruby-ronn' 'boost' 'libevent')
source=("${pkgname}::git+https://github.com/mhx/dwarfs.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname}"
git describe --long --tags 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "${pkgname}"
git submodule update --init --depth=1
}
build() {
cmake -B build -S "${pkgname}" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=None
cmake --build build
}
package() {
cmake --install build \
--prefix "${pkgdir}/usr"
install -Dm0644 "${pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|