blob: cd96e4883df84332792b76b2abca85f17ed94838 (
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: Rajdeep Malakar <nobody@rajdeepm.xyz>
# Contributor: Rajdeep Malakar <nobody@rajdeepm.xyz>
__lib=utils
__desc="utility functions for various Hay projects"
__ver=0.0.1
pkgname=hay-${__lib}-git
pkgdesc="${__desc}"
pkgver=0.0.1+gaa4e623
pkgrel=1
arch=('any')
url="https://codeberg.org/hay/${__lib}"
license=('MPL-2.0')
makedepends=('cmake' 'gcc' 'make')
source=("git+${url}.git")
b2sums=('SKIP')
pkgver() {
cd "$srcdir/${__lib}"
local commit_hash
commit_hash=$(git rev-parse --short HEAD)
echo "${__ver}+g${commit_hash}"
}
build() {
cd "$srcdir/${__lib}"
cmake -B build \
-S . \
-DBUILD_tests=ON \
-DCMAKE_BUILD_TYPE=Release \
-DSHARED_${__lib}=ON
cmake --build build
}
check() {
cd "$srcdir/${__lib}"
# Run the tests
ctest --test-dir build
}
package() {
cd "$srcdir/${__lib}"
cmake --install build --prefix="$pkgdir/usr"
}
|