a03d116397
```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.1 KiB
Bash
35 lines
1.1 KiB
Bash
# Template file for 'exo'
|
|
pkgname=exo
|
|
version=4.16.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static --with-locales-dir=/usr/share/locale"
|
|
hostmakedepends="xfce4-dev-tools pkg-config intltool gettext-devel glib-devel"
|
|
makedepends="gtk+-devel libxfce4ui-devel"
|
|
depends="hicolor-icon-theme desktop-file-utils"
|
|
short_desc="Extension library for the Xfce desktop environment"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-or-later, LGPL-2.1-or-later"
|
|
homepage="https://xfce.org/"
|
|
distfiles="https://archive.xfce.org/src/xfce/exo/${version%.*}/exo-${version}.tar.bz2"
|
|
checksum=4e89f5536afbf1cb9191cceb720fb2764df1a4fae3459512b7320841ab5a9e9d
|
|
|
|
pre_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# Disable tests:
|
|
sed -i 's/^\([[:blank:]]*po\).*$/\1/;/^[[:blank:]]*tests$/d' Makefile.am
|
|
fi
|
|
mkdir m4
|
|
NOCONFIGURE=1 xdt-autogen
|
|
}
|
|
|
|
exo-devel_package() {
|
|
depends="libxfce4ui-devel exo-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove "usr/share/*doc"
|
|
}
|
|
}
|