diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-03-02 13:36:28 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-03-02 13:59:38 -0300 |
commit | 5b443f823b12acddf40d640ec550a09c541be7d6 (patch) | |
tree | 778f6d3ecb3af589fdf4a043cc6179bb32f02bdc /community | |
parent | e7870b8e9392e62fb03f3453319522e30b051534 (diff) | |
download | aports-5b443f823b12acddf40d640ec550a09c541be7d6.tar.bz2 aports-5b443f823b12acddf40d640ec550a09c541be7d6.tar.xz |
community/cpputest: modernize
Diffstat (limited to 'community')
-rw-r--r-- | community/cpputest/APKBUILD | 27 |
1 files changed, 9 insertions, 18 deletions
diff --git a/community/cpputest/APKBUILD b/community/cpputest/APKBUILD index 2b5253d8bc..b7be520bbf 100644 --- a/community/cpputest/APKBUILD +++ b/community/cpputest/APKBUILD @@ -2,44 +2,35 @@ # Maintainer: Shiva Velmurugan <shiv@shiv.me> pkgname=cpputest pkgver=3.8 -pkgrel=1 +pkgrel=2 pkgdesc="A unit testing and mocking framework for C/C++" url="http://cpputest.github.io/" arch="all" -license="BSD" +license="BSD-3-Clause" options="!dbg" makedepends="cmake" -subpackages="$pkgname-doc" -source="https://github.com/cpputest/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz +source="https://github.com/cpputest/cpputest/releases/download/v$pkgver/cpputest-$pkgver.tar.gz test-s390x.patch " -builddir="$srcdir/$pkgname-$pkgver" build() { - mkdir -p "$builddir"/build - cd "$builddir"/build - - cmake .. -DCMAKE_INSTALL_PREFIX=/usr - make + cmake -B build . \ + -DCMAKE_BUILD_TYPE=None \ + -DCMAKE_INSTALL_PREFIX=/usr + make -C build } check() { - cd "$builddir"/build - make test + make -C build test } package() { - cd "$builddir"/build - - make DESTDIR="$pkgdir" install + make -C build 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 |