aports/testing/hplip/APKBUILD
Krystian Chachuła 1835f564b0 testing/hplip: split -ppd
PPDs take 20 MiB of disk space which is significant for platforms like
the Raspberry Pi 1 running in diskless mode. It is often enough to load
a single PPD to /etc/cups/ppd via the CUPS web interface.
2023-10-22 21:16:23 +00:00

76 lines
2.6 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.23.8
pkgrel=2
pkgdesc="Drivers for HP printers and scanners"
arch="all"
url="http://hplipopensource.com"
license="GPL-2.0-only AND BSD-3-Clause AND MIT"
makedepends="dbus-dev libjpeg-turbo-dev net-snmp-dev cups-dev libusb-dev sane-dev gawk python3-dev"
subpackages="$pkgname-doc $pkgname-libs $pkgname-ppd sane-backend-hpaio:sane"
source="https://downloads.sourceforge.net/hplip/hplip-$pkgver.tar.gz
fix-memmove.patch
disable_upgrade.patch
more-imageprocessor-removes.patch
no-empty-glob.patch
types-musl.patch
"
build() {
./configure --prefix=/usr \
--with-docdir=/usr/share/doc/$pkgname \
--disable-doc-build \
--disable-gui-build \
--disable-fax-build \
--disable-imageProcessor-build \
--enable-cups-drv-install \
--enable-cups-ppd-install
make
}
check() {
make check
}
package() {
make -j1 DESTDIR="$pkgdir" install
install -m755 -D prnt/filters/hpps "$pkgdir"/usr/lib/cups/filter/hpps
cd "$pkgdir"
rm -fr usr/bin \
etc/udev \
etc/sane.d \
usr/share/hal \
usr/lib/systemd \
usr/lib/cups/filter/pstotiff
}
ppd() {
pkgdesc="$pkgdesc (PPD files)"
mkdir -p "$subpkgdir"/usr/share/ppd/
mv "$pkgdir"/usr/share/ppd/HP "$subpkgdir"/usr/share/ppd/
}
sane() {
depends="sane"
pkgdesc="SANE backend for HP multi-function peripherals"
install_if="sane-backends"
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="
727b5a6c5b5c77571f1bc27efd493cf8177f543412fa70f0f1ff3439d6599c85985206ccb1c60dbc8bec1e23ef6b25f9030fd872c24799029ba8526b0061cc90 hplip-3.23.8.tar.gz
7d247b219595a8be4a9d709f14a9034eee1cef467981ffc29d18ee3c00bee125640b1149d7e57e3332242efd978d7cb3f8f25f21d41fb39e38f9520626cfe1ff fix-memmove.patch
ac436b54aecc0c2a7fc0eb5ae8e28d483c1efd5bd9385b0a1480fb78b8ccdd28ef85db86a980aec5ca093e9095d5714f93df095bf606e9a9c919f07c64e29697 disable_upgrade.patch
d8e76cb3757a7659f667e3d54cd0b7572dd8af1f4f87e26694dd3e4b1e0ec5cba7fe2d0ca531e14d568a675aa4a201795a3edb2c8892230e41e0d9408959b726 more-imageprocessor-removes.patch
69442c4bd2410e69a0d6314ce5db6b4638dd6a08c817b749f7b74e8e98db90eccb05ad3b44b71278e83cc3bbf6009fee8818855c1f08df9d6d8d5a35a078d68e no-empty-glob.patch
dbce7d859661b1a03847edf91db755c9b3d1ad7c2d3173741ecd89b954d1595d71f1adcbd481e81821ebd58cd9ae23adcef1cc026cfa09928fb0cba599781cd1 types-musl.patch
"