mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
removed extra/qpdf
This commit is contained in:
parent
ce273084d2
commit
971e4d49ff
1 changed files with 0 additions and 58 deletions
|
@ -1,58 +0,0 @@
|
|||
# Maintainer: AndyRTR <andyrtr@archlinux.org>
|
||||
# Contributor: Miguel Revilla <yo at miguelrevilla.com>
|
||||
# Contributor: David Sotelo <dvsotelo at gmail.com>
|
||||
# Contributor: Nuno Araujo <nuno.araujo@russo79.com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - explicitly link v5/v6 with libatomic
|
||||
|
||||
pkgname=qpdf
|
||||
pkgver=10.5.0
|
||||
pkgrel=1
|
||||
pkgdesc="QPDF: A Content-Preserving PDF Transformation System"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/qpdf/qpdf"
|
||||
license=('custom:Artistic-2.0' 'Apache')
|
||||
depends=('libjpeg-turbo' 'zlib' 'gnutls')
|
||||
makedepends=('texlive-bin' 'texlive-core' 'python-sphinx' 'python-sphinx_rtd_theme' 'texlive-latexextra')
|
||||
#optdepends=('perl: required for fix-qdf')
|
||||
#checkdepends=('perl')
|
||||
# https://github.com/qpdf/qpdf/releases/download/release-qpdf-10.5.0/qpdf-10.5.0.sha256
|
||||
source=(#https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
|
||||
https://github.com/qpdf/qpdf/releases/download/release-${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz{,.asc})
|
||||
sha256sums=('88257d36a44fd5c50b2879488324dd9cafc11686ae49d8c4922a4872203ce006'
|
||||
'SKIP')
|
||||
validpgpkeys=('C2C96B10011FE009E6D1DF828A75D10998012C7E') # "Jay Berkenbilt <ejb@ql.org>"
|
||||
|
||||
build() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LIBS="-latomic"
|
||||
LIBS=$LIBS ./configure --prefix=/usr \
|
||||
--disable-static \
|
||||
--enable-crypto-gnutls \
|
||||
--disable-crypto-openssl \
|
||||
--disable-implicit-crypto \
|
||||
--enable-show-failed-test-output \
|
||||
--enable-doc-maintenance --enable-html-doc
|
||||
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
make check # passes all
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
make doc-dist DESTDIR="${pkgdir}/" DOC_DEST="${pkgdir}"/usr/share/doc/qpdf install
|
||||
install -Dm644 doc/singlehtml/index.html "${pkgdir}"/usr/share/doc/qpdf/qpdf-manual.html
|
||||
|
||||
install -Dm644 completions/bash/qpdf "${pkgdir}/usr/share/bash-completion/completions/qpdf"
|
||||
install -Dm644 completions/zsh/_qpdf "${pkgdir}/usr/share/zsh/site-functions/_qpdf"
|
||||
|
||||
rm -rf "${pkgdir}"/usr/share/doc/qpdf/README-doc.txt
|
||||
|
||||
mkdir -m755 -p "${pkgdir}"/usr/share/licenses/${pkgname}
|
||||
install -m644 {Artistic-2.0,LICENSE.txt} "${pkgdir}"/usr/share/licenses/${pkgname}/
|
||||
}
|
Loading…
Reference in a new issue