blob: 24f6839f1c637e8b5c69861bd5421baed9b1997e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Maintainer: Carl Smedstad <carl.smedstad at protonmail dot com>
# Contributor: andmars <andreas.marschall @ unitybox.de>
# Contributor: PyroPeter <googlemail.com @ abi1789>
# Contributor: Ivan Shapovalov <intelfx@intelfx.name>
pkgname=hplip-plugin
pkgver=3.23.12
pkgrel=3
pkgdesc="Binary plugin for HPs hplip printer driver library"
arch=(x86_64 aarch64 armv6h armv7h i686)
url="https://developers.hp.com/hp-linux-imaging-and-printing/binary_plugin.html"
license=(LicenseRef-HPLIP-LICENSE)
depends=(
# While hplip-plugin requires the version of hplip to match exactly,
# specifying such a requirement breaks the ability to upgrade hplip.
"hplip>=1:$pkgver"
gcc-libs
glibc
libusb-compat
sane
)
backup=(var/lib/hp/hplip.state)
source=(
"https://developers.hp.com/sites/default/files/hplip-$pkgver-plugin.run"
"https://developers.hp.com/sites/default/files/hplip-$pkgver-plugin.run.asc"
)
sha256sums=(
'402799c0c8e2efafc8452a5a0929b06efbfd7bee2ff8ce060bdc447b2a34067f'
'SKIP'
)
validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux Imaging and Printing) <hplip@hp.com>
prepare() {
sh "hplip-$pkgver-plugin.run" --target "$srcdir/hplip-$pkgver-plugin" --noexec
}
package() {
cd "$srcdir/hplip-$pkgver-plugin"
case $CARCH in
"i686")
_arch='x86_32'
;;
"x86_64")
_arch='x86_64'
;;
"armv6h" | "armv7h")
_arch='arm32'
;;
"aarch64")
_arch='arm64'
;;
esac
install -Dm644 -t "$pkgdir/usr/share/hplip" plugin.spec
install -Dm644 -t "$pkgdir/usr/share/hplip/data/firmware" hp_laserjet_*.fw.gz
install -Dm755 -t "$pkgdir/usr/share/hplip/fax/plugins" fax_marvell-"$_arch".so
install -Dm755 -t "$pkgdir/usr/share/hplip/prnt/plugins" hbpl1-"$_arch".so
install -Dm755 -t "$pkgdir/usr/share/hplip/prnt/plugins" lj-"$_arch".so
install -Dm755 -t "$pkgdir/usr/share/hplip/scan/plugins" bb_*-"$_arch".so
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" license.txt
# Create hplip.state used by hplip-tools
cat << EOF > hplip.state
[plugin]
installed = 1
eula = 1
version = $pkgver
EOF
install -Dm644 -t "$pkgdir/var/lib/hp" hplip.state
# Create symlinks
find "$pkgdir/usr/share/hplip" -type f -name "*.so" | while read -r f; do
lib_dir="${f%/*}"
lib_name="${f##*/}"
ln -vsf "$lib_name" "$lib_dir/${lib_name%%-*}.so"
done
}
# Note: to check the install, perform: hp-diagnose_plugin
|