blob: 1a70831ae4f5c4a6160e771f066665548ec7b539 (
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
|
# Maintainer: David Peter <mail@david-peter.de>
pkgname=dbg-macro
pkgver=0.5.1
pkgrel=1
pkgdesc="A C++ macro for printf-style debugging fans."
arch=(any)
url="https://github.com/sharkdp/dbg-macro"
license=('MIT')
depends=()
optdepends=()
makedepends=('git' 'cmake')
source=("git+https://github.com/sharkdp/dbg-macro/#tag=v${pkgver}"
"git+https://github.com/catchorg/Catch2#tag=v2.13.10")
md5sums=('SKIP' 'SKIP')
prepare() {
cd "${pkgname}"
git submodule init
git config submodule."tests/Catch2".url "$srcdir"/Catch2
git submodule update
}
build() {
cd "${pkgname}"
git submodule init
mkdir -p build
cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DDBG_MACRO_ENABLE_TESTS=1
make -j
}
check() {
cd "${pkgname}/build"
make test
}
package() {
cd "${pkgname}/build"
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et:
|