blob: ee3e38ddb0935298f8620008b26c9409501e695b (
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
|
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>
# Contributor: Timo Teräs <timo.teras@iki.fi>
# Contributor: Valery Kartel <valery.kartel@gmail.com>
pkgname=hplip
pkgver=3.17.11
pkgrel=1
pkgdesc="Drivers for HP printers and scanners"
arch="x86 x86_64"
url="http://hplipopensource.com"
license="GPL"
depends=""
makedepends="libjpeg-turbo-dev net-snmp-dev cups-dev libusb-dev sane-dev"
subpackages="$pkgname-doc $pkgname-libs sane-backend-hpaio:sane"
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
fix-includes.patch"
builddir="$srcdir"/$pkgname-$pkgver
prepare() {
default_prepare
update_config_guess
}
build() {
cd "$builddir"
./configure --prefix=/usr \
--with-docdir=/usr/share/doc/$pkgname \
--enable-lite-build \
--disable-doc-build \
--disable-gui-build \
--disable-fax-build \
--disable-dbus-build \
--enable-cups-drv-install \
--enable-cups-ppd-install
make
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make -j1 DESTDIR="$pkgdir" install
rm -fr "$pkgdir"/usr/bin \
"$pkgdir"/etc/udev \
"$pkgdir"/etc/sane.d \
"$pkgdir"/usr/share/hal \
"$pkgdir"/usr/lib/systemd \
"$pkgdir"/usr/lib/cups/filter/pstotiff
install -m755 -D prnt/filters/hpps "$pkgdir"/usr/lib/cups/filter/hpps
}
sane() {
depends="sane"
pkgdesc="SANE backend for HP multi-function peripherals"
provides="$pkgname-sane"
mkdir -p "$subpkgdir"/usr/lib \
"$subpkgdir"/etc/sane.d/dll.d
mv "$pkgdir"/usr/lib/sane "$subpkgdir"/usr/lib
echo "hpaio" > "$subpkgdir"/etc/sane.d/dll.d/hpaio
}
sha512sums="29899d58959d49a0b5e730520ef598f245570b084db33d322859b4773a934167387893888a5829c5cfd5a2e4b66848b173fc7c60973fccdb6d3f854105ad7665 hplip-3.17.11.tar.gz
173f0c2bbf0daefc717282bf125d3fd94b3914da0754078c45b58b09ab841672aae9238ca8fc0448486a871e40fc50f960da17c1e07ad3f04053d217ed634498 fix-includes.patch"
|