c987560802
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
21 lines
778 B
Bash
21 lines
778 B
Bash
# Template file for 'catch2'
|
|
pkgname=catch2
|
|
version=2.13.4
|
|
revision=1
|
|
wrksrc="Catch2-${version}"
|
|
build_style=cmake
|
|
configure_args="-DCATCH_USE_VALGRIND=OFF -DCATCH_BUILD_TESTING=ON
|
|
-DCATCH_BUILD_EXAMPLES=OFF -DCATCH_BUILD_EXTRA_TESTS=OFF
|
|
-DCATCH_ENABLE_COVERAGE=OFF -DCATCH_ENABLE_WERROR=OFF
|
|
-DCATCH_INSTALL_DOCS=ON -DCATCH_INSTALL_HELPERS=ON"
|
|
hostmakedepends="python3"
|
|
short_desc="C++ header-only test framework for unit-tests, TDD and BDD"
|
|
maintainer="Louis Dupré Bertoni <contact@louisdb.xyz>"
|
|
license="BSL-1.0"
|
|
homepage="https://github.com/catchorg/Catch2"
|
|
distfiles="https://github.com/catchorg/Catch2/archive/v${version}/${pkgname}-v${version}.tar.gz"
|
|
checksum=e7eb70b3d0ac2ed7dcf14563ad808740c29e628edde99e973adad373a2b5e4df
|
|
|
|
post_install() {
|
|
vlicense LICENSE.txt
|
|
}
|