void-packages/srcpkgs/mupdf/template

79 lines
2.2 KiB
Bash

# Template file for 'mupdf'
# Static library, revbump all dependants on mupdf updates
pkgname=mupdf
version=1.23.11
revision=1
hostmakedepends="pkg-config zlib-devel libcurl-devel freetype-devel
libjpeg-turbo-devel jbig2dec-devel libXext-devel libXcursor-devel
libXrandr-devel libXinerama-devel harfbuzz-devel readline-devel
MesaLib-devel libopenjpeg2-devel glu-devel libXi-devel libfreeglut-devel
gumbo-parser-devel"
makedepends="$hostmakedepends"
depends="desktop-file-utils"
short_desc="Lightweight PDF and XPS viewer"
maintainer="cinerea0 <cinerea0@protonmail.com>"
license="AGPL-3.0-only"
homepage="https://mupdf.com"
changelog="https://mupdf.com/releases/history.html"
distfiles="https://mupdf.com/downloads/archive/mupdf-${version}-source.tar.lz"
checksum=dbd72c98cbb54685d2d70e1cf5b4aaf0c8893f5aaf62e61293744f19f12764cf
pre_build() {
if [ "$CROSS_BUILD" ]; then
make ${makejobs} CC=cc LD=ld AR=ar CFLAGS="-fPIC" LDFLAGS='' build=release generate
fi
}
do_build() {
CFLAGS+=" -fPIC"
CXXFLAGS+=" -fPIC"
local _crosscompile
if [ "$CROSS_BUILD" ]; then
_crosscompile="CROSSCOMPILE=yes"
fi
make ${makejobs} USE_SYSTEM_LIBS=yes CURL_LIBS='-lcurl -lpthread' build=release ${_crosscompile} all
make ${makejobs} CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" build=release ${_crosscompile} -C thirdparty/mujs
}
do_install() {
make USE_SYSTEM_LIBS=yes build=release prefix=${DESTDIR}/usr install
for f in build/release/libmupdf-*.a; do
vinstall $f 644 usr/lib
done
ln -rs ${DESTDIR}/usr/bin/mupdf-x11 ${DESTDIR}/usr/bin/mupdf
vinstall docs/logo/mupdf.xpm 644 usr/share/pixmaps
vinstall docs/logo/new-mupdf-icon.svg 644 /usr/share/icons/hicolor/scalable/apps mupdf.svg
vinstall ${FILESDIR}/mupdf.desktop 644 usr/share/applications
vmkdir usr/lib/pkgconfig
sed "s/@VERSION@/${version}/" ${FILESDIR}/mupdf.pc.in > ${DESTDIR}/usr/lib/pkgconfig/mupdf.pc
}
post_install() {
vlicense COPYING LICENSE
}
mupdf-devel_package() {
short_desc+=" - development files"
depends="libjpeg-turbo-devel jbig2dec-devel libopenjpeg2-devel"
pkg_install() {
vmove usr/lib/pkgconfig
vmove usr/include
vmove "usr/lib/*.a"
}
}
mupdf-tools_package() {
short_desc+=" - tools"
pkg_install() {
vmove usr/bin/muraster
vmove usr/bin/mutool
vmove usr/share/man/man1/mutool.1
}
}