aboutsummaryrefslogtreecommitdiffstats
path: root/testing/cmocka/APKBUILD
blob: 34027a4871bfb6dfc933b9d749f0f237a16df5e1 (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
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=cmocka
pkgver=1.1.0
pkgrel=0
pkgdesc="An elegant unit testing framework for C with support for mock objects"
url="https://cmocka.org/"
arch="all !aarch64"
license="ASL-2.0"
depends=""
makedepends="cmake"
source="https://cmocka.org/files/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"

	mkdir build; cd build
	cmake .. \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DBUILD_SHARED_LIBS=True \
		-DCMAKE_BUILD_TYPE=Release \
		-DCMAKE_C_FLAGS="$CFLAGS" \
		-DUNIT_TESTING=ON \
		|| return 1
	make && make test
}

package() {
	cd "$builddir"/build

	make DESTDIR="$pkgdir" install
}

md5sums="59c9aa5735d9387fb591925ec53523ec  cmocka-1.1.0.tar.xz"
sha256sums="e960d3bf1be618634a4b924f18bb4d6f20a825c109a8ad6d1af03913ba421330  cmocka-1.1.0.tar.xz"
sha512sums="b45b6c6bf6c1a0e12cbbfa203afc0172aa53215e0bd43a21b30db04c0490609a7a262f1b4d87be9df0c5c486c4f4891d3432e0e053418d373d9750a6cf5adf70  cmocka-1.1.0.tar.xz"