7fc9190f0e
* gcc is kept at -Np0, because of void-cross ```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 ```
24 lines
701 B
Bash
24 lines
701 B
Bash
# Template file for 'geos'
|
|
pkgname=geos
|
|
version=3.9.1
|
|
revision=2
|
|
build_style=gnu-configure
|
|
short_desc="C++ port of the Java Topology Suite (JTS)"
|
|
maintainer="Nyx70 <n.y.x@bluewin.ch>"
|
|
license="LGPL-2.1-or-later"
|
|
homepage="https://trac.osgeo.org/geos"
|
|
distfiles="https://download.osgeo.org/${pkgname}/${pkgname}-${version}.tar.bz2"
|
|
checksum=7e630507dcac9dc07565d249a26f06a15c9f5b0c52dd29129a0e3d381d7e382a
|
|
|
|
geos-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/bin/geos-config
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/libgeos.so
|
|
vmove usr/lib/libgeos_c.so
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|