200bed5c06
```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 ```
35 lines
1.2 KiB
Bash
35 lines
1.2 KiB
Bash
# Template file for 'hamlib'
|
|
pkgname=hamlib
|
|
version=4.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static --with-perl-binding --with-python-binding
|
|
--with-tcl-binding --with-xml-support"
|
|
hostmakedepends="automake libtool pkg-config python3 swig"
|
|
makedepends="gettext-devel libusb-devel libxml2-devel python3-devel readline-devel
|
|
tcl-devel"
|
|
depends="perl"
|
|
short_desc="Library to control radio transceivers and receivers"
|
|
maintainer="bra1nwave <brainwave@openmailbox.org>"
|
|
license="LGPL-2.1-or-later, GPL-2.0-or-later"
|
|
homepage="https://sourceforge.net/projects/hamlib/"
|
|
distfiles="${SOURCEFORGE_SITE}/hamlib/${version}/${pkgname}-${version}.tar.gz"
|
|
checksum=e200b22f307e9a0c826187c2b08fe81c7d0283cf07056e6db3463d1481580fd5
|
|
|
|
pre_configure() {
|
|
CFLAGS+=" -DNO_POSIX_2008_LOCALE -D_GNU_SOURCE"
|
|
export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/${py3_inc}"
|
|
export PYTHON_LIBS="-L${XBPS_CROSS_BASE}/usr/lib -lpython${py3_ver}${py3_abiver}"
|
|
autoreconf -fi
|
|
}
|
|
|
|
hamlib-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/aclocal
|
|
}
|
|
}
|