mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 22:52:40 +01:00
Removed lite build (and so now requires python-dev), which prevented scanimage from noticing a Photosmart 5520 network printer/scanner.
73 lines
2.5 KiB
Plaintext
73 lines
2.5 KiB
Plaintext
# 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.19.1
|
|
pkgrel=1
|
|
pkgdesc="Drivers for HP printers and scanners"
|
|
arch="x86 x86_64" # missing sane on several arches
|
|
url="http://hplipopensource.com"
|
|
license="GPL"
|
|
depends=""
|
|
makedepends="libjpeg-turbo-dev net-snmp-dev cups-dev libusb-dev sane-dev gawk python-dev"
|
|
subpackages="$pkgname-doc $pkgname-libs sane-backend-hpaio:sane"
|
|
source="https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
|
|
fix-includes.patch
|
|
types-musl.patch
|
|
disable_upgrade.patch
|
|
0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch
|
|
"
|
|
builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
default_prepare
|
|
update_config_guess
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure --prefix=/usr \
|
|
--with-docdir=/usr/share/doc/$pkgname \
|
|
--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="b1d663a3538a19ab2c195bc627c765b9dded047b0431f6fc2096a8a31b4efb5cf52c88ad9665a2d78893ba66c1c47ccf79c161965f308a27eeeb11b156b446c8 hplip-3.19.1.tar.gz
|
|
173f0c2bbf0daefc717282bf125d3fd94b3914da0754078c45b58b09ab841672aae9238ca8fc0448486a871e40fc50f960da17c1e07ad3f04053d217ed634498 fix-includes.patch
|
|
dbce7d859661b1a03847edf91db755c9b3d1ad7c2d3173741ecd89b954d1595d71f1adcbd481e81821ebd58cd9ae23adcef1cc026cfa09928fb0cba599781cd1 types-musl.patch
|
|
ac436b54aecc0c2a7fc0eb5ae8e28d483c1efd5bd9385b0a1480fb78b8ccdd28ef85db86a980aec5ca093e9095d5714f93df095bf606e9a9c919f07c64e29697 disable_upgrade.patch
|
|
0ededf7b27abab1b2f889f19bb3587816d437ed1b8253a68e9e4af99684456057c1529b353c439e11b2235cb84560e90bb841d348fa53b49e4bbc123a41aba81 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch"
|