# Template file for 'mupdf' # Static library, revbump all dependants on mupdf updates pkgname=mupdf version=1.24.0 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 " 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=f8200d44b7728359c628e12eb0e85e8471a8296ae7ae6250b20185b598aa98a7 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 } }