* arduino and antiword is kept at -Np0
```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
```
51 lines
1.7 KiB
Bash
51 lines
1.7 KiB
Bash
# Template file for 'argyllcms'
|
|
pkgname=argyllcms
|
|
version=2.1.2
|
|
revision=3
|
|
wrksrc="Argyll_V${version}"
|
|
hostmakedepends="ftjam zip unzip"
|
|
makedepends="zlib-devel libjpeg-turbo-devel libXinerama-devel openssl-devel
|
|
libXScrnSaver-devel libXxf86vm-devel libXrandr-devel tiff-devel libpng-devel"
|
|
short_desc="ICC compatible color management system"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="AGPL-3.0-or-later, GPL-2.0-or-later, GPL-3.0-or-later"
|
|
homepage="https://www.argyllcms.com/"
|
|
distfiles="https://www.argyllcms.com/Argyll_V${version}_src.zip"
|
|
checksum=be378ca836b17b8684db05e9feaab138d711835ef00a04a76ac0ceacd386a3e3
|
|
|
|
# Build system look only under / for headers and libraries. Breaks cross.
|
|
nocross=yes
|
|
|
|
CFLAGS="-fcommon"
|
|
|
|
do_configure() {
|
|
sed -i 's:^TEST=="/lib/udev/usb-db", IMPORT{program}="usb-db %p":IMPORT{builtin}="hwdb --subsystem=usb":' usb/55-Argyll.rules
|
|
}
|
|
|
|
do_build() {
|
|
unset AR
|
|
export NUMBER_OF_PROCESSORS=$XBPS_MAKEJOBS
|
|
export CCOPTFLAG="$CFLAGS"
|
|
export LINKDEBUGFLAG="$LDFLAGS"
|
|
sh ./makeall.sh
|
|
sh ./makeinstall.sh
|
|
rm {bin,ref}/License.txt
|
|
rm {doc,ref}/afiles
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/bin
|
|
install -m755 bin/* ${DESTDIR}/usr/bin
|
|
vmkdir usr/share/${pkgname}/ref
|
|
install -m644 ref/*.* ${DESTDIR}/usr/share/${pkgname}/ref
|
|
install -m644 profile/*.sp ${DESTDIR}/usr/share/${pkgname}/ref
|
|
install -m644 scanin/*.c?? ${DESTDIR}/usr/share/${pkgname}/ref
|
|
# Because there is just html documentation we have to move it
|
|
vmkdir usr/share/${pkgname}/doc/ccmxs
|
|
install -m644 doc/ccmxs/*.ccmx ${DESTDIR}/usr/share/${pkgname}/doc/ccmxs
|
|
install -m644 doc/*.* ${DESTDIR}/usr/share/${pkgname}/doc
|
|
vmkdir usr/lib/udev/rules.d
|
|
install -m644 usb/55-Argyll.rules ${DESTDIR}/usr/lib/udev/rules.d/55-Argyll.rules
|
|
vlicense License.txt
|
|
}
|