a92d370caa
Generated with: git ls-files 'srcpkgs/**/patches/*' | cut -d/ -f2 | uniq | xargs printf 'srcpkgs/%s/template\n' | xargs grep -L 'patch_args=' | xargs sed -i "$(printf '1,/^$/{/^$/i\\\npatch_args=-Np0\n}\n')"
43 lines
1 KiB
Bash
43 lines
1 KiB
Bash
# Template file for 'jbig2dec'
|
|
# Rebuild and test mupdf for updates, it refuses to start when versions are unmatched
|
|
pkgname=jbig2dec
|
|
version=0.19
|
|
revision=2
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool"
|
|
makedepends="libpng-devel"
|
|
checkdepends="python3"
|
|
short_desc="Decoder implementation of the JBIG2 image compression format"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="AGPL-3.0-or-later"
|
|
homepage="https://www.jbig2dec.com"
|
|
distfiles="https://github.com/ArtifexSoftware/jbig2dec/archive/${version}.tar.gz"
|
|
checksum=e81b787ad0b147a437a52d9ce7de1a8f429655e8aa030383b6b2dd8919373717
|
|
patch_args=-Np0
|
|
|
|
pre_configure() {
|
|
sed -i '$ d' autogen.sh
|
|
./autogen.sh
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
jbig2dec-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="libjbig2dec>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
|
|
libjbig2dec_package() {
|
|
short_desc+=" - runtime library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|