24 lines
677 B
Bash
24 lines
677 B
Bash
# Template file for 'unittest-cpp'
|
|
pkgname=unittest-cpp
|
|
version=1.6.0
|
|
revision=1
|
|
build_style=cmake
|
|
hostmakedepends="cmake"
|
|
short_desc="A lightweight unit testing framework for C++"
|
|
maintainer="Spencer Hill <spencernh77@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/unittest-cpp/unittest-cpp"
|
|
distfiles="https://github.com/unittest-cpp/unittest-cpp/archive/v${version}.tar.gz"
|
|
checksum=9fa7e797816e16669d68171418b0dc41ec6b7eaf8483f782441f5f159598c3c0
|
|
|
|
pre_build() {
|
|
case $XBPS_TARGET_MACHINE in
|
|
arm* ) echo "Removing built in test from arm build. Won't run on host x86_64 machine"
|
|
sed -i '59,61d' CMakeLists.txt ;;
|
|
esac
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|