summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: abe926fa83fde65620cb4823bffadefc6a611a9a (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
# Maintainer: Alex Henrie <alexhenrie24@gmail.com>
pkgname=scap-workbench-git
pkgver=1.2.1.r67.10c1929
pkgrel=1
pkgdesc='Security Content Automation Protocol GUI'
arch=('x86_64')
url='https://www.open-scap.org/tools/scap-workbench/'
license=('BSD')
depends=('asciidoc' 'openscap' 'openssh' 'qt5-base' 'qt5-xmlpatterns' 'scap-security-guide')
makedepends=('git')
provides=('scap-workbench')
conflicts=('scap-workbench')
source=('git+https://github.com/OpenSCAP/scap-workbench.git')
sha256sums=('SKIP')

pkgver() {
	cd scap-workbench
	printf "%s" "$(git describe --tags --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}

build() {
	cd scap-workbench
	mkdir -p build
	cd build
	cmake \
		--install-prefix=/usr \
		-DCMAKE_CXX_FLAGS='-std=c++11 -Wno-error=c++20-compat -Wno-error=range-loop-construct -Wno-error=deprecated-declarations' \
		..
	make
}

package() {
	cd scap-workbench/build
	make DESTDIR="$pkgdir/" install
}