53 lines
1.7 KiB
Text
53 lines
1.7 KiB
Text
# Template file for 'hplip'
|
|
pkgname=hplip
|
|
version=3.15.2
|
|
revision=2
|
|
#XXX: pyqt pkgs for python gui
|
|
hostmakedepends="pkg-config automake libtool"
|
|
makedepends="libressl-devel>=2.1.4 python-devel libxml2-python cups-devel
|
|
sane-devel ghostscript-devel net-snmp-devel libusb-devel libjpeg-turbo-devel
|
|
dbus-devel polkit-devel"
|
|
depends="python foomatic-db foomatic-db-engine desktop-file-utils"
|
|
conf_files="/etc/hp/hplip.conf"
|
|
make_dirs="/var/lib/hp 0755 root root"
|
|
short_desc="HP Linux Imaging and Printing"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://hplipopensource.com/"
|
|
license="GPL-2"
|
|
distfiles="$SOURCEFORGE_SITE/$pkgname/$pkgname-$version.tar.gz"
|
|
checksum=5f02eca743d85240db07ed2fc6551e1dce0dedc85ad4a0e90417e4d5b630f67c
|
|
|
|
do_configure() {
|
|
# https://bugs.archlinux.org/task/30085 - hack found in Gentoo
|
|
# Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
|
|
# The hpcups driver does not use foomatic-rip
|
|
local i
|
|
for i in ppd/hpijs/*.ppd.gz ; do
|
|
rm -f ${i}.temp
|
|
gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | gzip > ${i}.temp
|
|
mv ${i}.temp ${i}
|
|
done
|
|
|
|
./configure ${configure_args} --disable-gui-build \
|
|
--disable-foomatic-rip-hplip-install \
|
|
--enable-foomatic-ppd-install \
|
|
--enable-hpcups-install \
|
|
--enable-new-hpcups \
|
|
--enable-cups-ppd-install \
|
|
--enable-cups-drv-install \
|
|
--enable-hpijs-install \
|
|
--enable-foomatic-drv-install \
|
|
--enable-pp-build \
|
|
--enable-udev-acl-rules
|
|
}
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
do_install() {
|
|
make rulesdir=/usr/lib/udev/rules.d DESTDIR=${DESTDIR} install
|
|
# remove config provided by sane and autostart of hp-daemon
|
|
rm -rf ${DESTDIR}/etc/{sane.d,xdg}
|
|
# remove HAL .fdi file because HAL is no longer used
|
|
rm -rf ${DESTDIR}/usr/share/hal
|
|
rm -rf ${DESTDIR}/var
|
|
}
|