# Maintainer: yozi backwards # Contributor: Bernd Amend pkgname='libcatch-cpp-headers' pkgver=1.9.7 pkgrel=1 pkgdesc='C++-native framework for unit-tests using only a header file' arch=(any) url='http://catch-lib.net' license=('custom:BSL') source=("https://raw.githubusercontent.com/catchorg/Catch2/v${pkgver}/single_include/catch.hpp" "LICENSE::https://raw.githubusercontent.com/catchorg/Catch2/v${pkgver}/LICENSE.txt") sha256sums=('58866d605fc0d6d021f02d773a0f2a01afa80eafbf6e654e6d6bff38f1d47d26' 'c9bff75738922193e67fa726fa225535870d2aa1059f91452c411736284ad566') pkgver() { echo $(grep -oEm1 \ '^.*Catch v[0-9]\.[0-9]+\.[0-9]+$' \ catch.hpp | cut -d'v' -f2) } package() { install -D -m644 catch.hpp "${pkgdir}/usr/include/catch.hpp" install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } # vim:set ts=2 sw=2 et: