mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
added extra/qpdf
This commit is contained in:
parent
1acaaf01b4
commit
e696817e3b
1 changed files with 52 additions and 0 deletions
52
extra/qpdf/PKGBUILD
Normal file
52
extra/qpdf/PKGBUILD
Normal file
|
@ -0,0 +1,52 @@
|
|||
# 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.0.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')
|
||||
#optdepends=('perl: required for fix-qdf')
|
||||
#checkdepends=('perl')
|
||||
# https://github.com/qpdf/qpdf/releases/download/release-qpdf-10.0.0/qpdf-10.0.0.sha512
|
||||
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})
|
||||
sha512sums=('9d07dddd139dc489f6ffefaee95bdbc430da3948b7ba5ac900e4b8dd027ab65805ba349e1e6d69068d1618d7d0d4f83d2952f6a637f3637613af764d4f26af23'
|
||||
'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
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
make check # passes all
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
make DESTDIR="${pkgdir}/" install
|
||||
|
||||
install -Dm644 completions/bash/qpdf "${pkgdir}/usr/share/bash-completion/completions/qpdf"
|
||||
install -Dm644 completions/zsh/_qpdf "${pkgdir}/usr/share/zsh/site-functions/_qpdf"
|
||||
|
||||
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