62 lines
1.8 KiB
Plaintext
62 lines
1.8 KiB
Plaintext
# Template file for 'hplip'
|
|
pkgname=hplip
|
|
version=3.12.11
|
|
revision=2
|
|
short_desc="HP Linux Imaging and Printing"
|
|
maintainer="davehome <davehome@redthumb.info.tm>"
|
|
homepage="http://hplipopensource.com/"
|
|
license="GPL-2"
|
|
distfiles="$SOURCEFORGE_SITE/$pkgname/$pkgname-$version.tar.gz"
|
|
checksum=c5b81167b21aa4ee6bdf3f5c120bfa050d0c794608da8bcc32e2580234919ffa
|
|
|
|
#XXX: pyqt pkgs for python gui
|
|
makedepends="pkg-config automake libtool python-devel libxml2-python cups-devel
|
|
sane-devel ghostscript-devel net-snmp-devel libusb-devel libjpeg-turbo-devel
|
|
dbus-devel polkit-devel python foomatic-db foomatic-db-engine desktop-file-utils"
|
|
|
|
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 || return 1
|
|
mv ${i}.temp ${i}
|
|
done
|
|
|
|
./configure ${CONFIGURE_SHARED_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
|
|
}
|
|
|
|
hplip_package() {
|
|
depends="python foomatic-db foomatic-db-engine desktop-file-utils"
|
|
conf_files="/etc/hp/hplip.conf"
|
|
pkg_install() {
|
|
vmove etc
|
|
vmove usr
|
|
}
|
|
}
|