mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
87 lines
3.3 KiB
Bash
87 lines
3.3 KiB
Bash
# $Id$
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
# Maintainer: Tom Gundersen <teg@jklm.no>
|
|
# Contributor : Rémy Oudompheng <remy@archlinux.org>
|
|
# Contributor: Morgan LEFIEUX <comete@archlinuxfr.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - hold at 3.18.6 until upstream fixes 3.18.7+ for ARM
|
|
# https://bugs.launchpad.net/hplip/+bug/1784989
|
|
|
|
pkgname=hplip
|
|
pkgver=3.18.6
|
|
pkgrel=3
|
|
pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and some LaserJet"
|
|
arch=('x86_64')
|
|
url="http://hplipopensource.com"
|
|
license=('GPL')
|
|
depends=('python-dbus' 'ghostscript' 'net-snmp' 'foomatic-db-engine')
|
|
makedepends=('python-pyqt5' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb')
|
|
optdepends=('cups: for printing support'
|
|
'sane: for scanner support'
|
|
'xsane: sane scanner frontend'
|
|
'python-pillow: for commandline scanning support'
|
|
'python-reportlab: for pdf output in hp-scan'
|
|
'rpcbind: for network support'
|
|
'python-pyqt5: for running GUI and hp-toolbox'
|
|
'python-gobject: for running hp-toolbox'
|
|
'libusb: for advanced usb support'
|
|
'wget: for network support')
|
|
# 'hplip-plugin: binary blobs for specific devices (AUR) or run hp-setup to download the plugin'
|
|
backup=('etc/hp/hplip.conf' 'etc/sane.d/dll.d/hpaio')
|
|
source=(https://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
|
|
disable_upgrade.patch
|
|
0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
|
|
0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
|
|
hplip-colorlaserjet-mfp-m278-m281.patch)
|
|
sha1sums=('2a7c64595099c50e6c665260f4de7a7106e0b3fc'
|
|
'SKIP'
|
|
'2348bcbca0c52dc09cceb47ed13281a4ccb9d83e'
|
|
'2ef86972ab51c0fdcb8bfc653b9f6f69459449a5'
|
|
'0e36f31b98faf2f14137431bc8f82b74de22705b'
|
|
'89e0ed0ed9acc6e50812c843ffb5f996fffb829e')
|
|
validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux Imaging and Printing) <hplip@hp.com>
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
|
|
# disable insecure update - https://bugs.archlinux.org/task/38083
|
|
patch -Np0 -i ${srcdir}/disable_upgrade.patch
|
|
|
|
# add missing 'include <cups/ppd.h>' at various places
|
|
patch -Np1 -i ${srcdir}/0022-Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch
|
|
# fix some handling unicode file names FS#58412
|
|
patch -Np1 -i ${srcdir}/0023-Fix-handling-of-unicode-filenames-in-sixext.py.patch
|
|
# add support for some missing models - FS#57683
|
|
# patch -Np1 -i ${srcdir}/hplip-colorlaserjet-mfp-m278-m281.patch
|
|
|
|
export AUTOMAKE='automake --foreign'
|
|
autoreconf --force --install
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr \
|
|
--enable-qt5 \
|
|
--disable-qt4 \
|
|
--enable-hpcups-install \
|
|
--enable-cups-drv-install \
|
|
--enable-pp-build #--help
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make -j1 rulesdir=/usr/lib/udev/rules.d DESTDIR="$pkgdir/" install
|
|
|
|
# remove config provided by sane and autostart of hp-daemon
|
|
rm -rf "$pkgdir"/etc/{sane.d,xdg}
|
|
install -dm755 ${pkgdir}/etc/sane.d/dll.d
|
|
echo hpaio > ${pkgdir}/etc/sane.d/dll.d/hpaio
|
|
|
|
# remove HAL .fdi file because HAL is no longer used
|
|
rm -vrf "$pkgdir"/usr/share/hal
|
|
|
|
# remove rc script
|
|
rm -vrf "$pkgdir"/etc/init.d
|
|
}
|