aboutsummaryrefslogtreecommitdiffstats
path: root/testing/cpputest/APKBUILD
blob: 2b5253d8bc91d5f426a3caab359283da27b416d9 (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
# Contributor: Shiva Velmurugan <shiv@shiv.me>
# Maintainer: Shiva Velmurugan <shiv@shiv.me>
pkgname=cpputest
pkgver=3.8
pkgrel=1
pkgdesc="A unit testing and mocking framework for C/C++"
url="http://cpputest.github.io/"
arch="all"
license="BSD"
options="!dbg"
makedepends="cmake"
subpackages="$pkgname-doc"
source="https://github.com/cpputest/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz
	test-s390x.patch
	"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	mkdir -p "$builddir"/build
	cd "$builddir"/build

	cmake .. -DCMAKE_INSTALL_PREFIX=/usr
	make
}

check() {
	cd "$builddir"/build
	make test
}

package() {
	cd "$builddir"/build

	make DESTDIR="$pkgdir" install

	mkdir -p "$pkgdir"/usr/lib/cmake
	mv "$pkgdir"/usr/lib/CppUTest/cmake \
		"$pkgdir"/usr/lib/cmake/CppUTest
	rmdir "$pkgdir"/usr/lib/CppUTest

	install -Dm644 ../COPYING \
		"$pkgdir"/usr/share/licenses/$pkgname/COPYING
}

sha512sums="a9592bdc9ffab8b42026ef2010f504e7e37d77fc2f197f89d23f7c9285a101059a0ec66418b914db0383974616d31b26addd1938fb27f45c3e7d9496ed0a0fac  cpputest-3.8.tar.gz
dd1366d9d692c74d1581590992f1ce927a566f9bdcf520d3097330d986d5b9c32b26cac1a2672a3eab4856350117a1e3af05e2ff4122aa11ae21434b0822d978  test-s390x.patch"