83 lines
2.7 KiB
Bash
83 lines
2.7 KiB
Bash
# Template file for 'hplip'
|
|
pkgname=hplip
|
|
version=3.18.9
|
|
revision=3
|
|
build_style=gnu-configure
|
|
configure_args="
|
|
--enable-gui-build
|
|
--disable-qt4
|
|
--enable-qt5
|
|
--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
|
|
--with-mimedir=/usr/share/cups/mime"
|
|
hostmakedepends="pkg-config automake libtool python"
|
|
makedepends="libressl-devel python-devel libxml2-python cups-devel sane-devel
|
|
ghostscript-devel net-snmp-devel libusb-devel libjpeg-turbo-devel dbus-devel"
|
|
depends="python-gobject2 python-dbus desktop-file-utils
|
|
foomatic-db foomatic-db-engine"
|
|
conf_files="/etc/hp/hplip.conf"
|
|
make_dirs="/var/lib/hp 0755 root root"
|
|
pycompile_dirs="usr/share/hplip"
|
|
short_desc="HP Linux Imaging and Printing"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2.0-only, BSD-3-Clause, MIT"
|
|
homepage="https://developers.hp.com/hp-linux-imaging-and-printing"
|
|
distfiles="${SOURCEFORGE_SITE}/hplip/hplip/${version}/hplip-${version}.tar.gz"
|
|
checksum=20093830994de16bb36c049c1fdb688569531525fb994f7e605e66266a2d783c
|
|
conflicts="hplip-gui"
|
|
|
|
CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/libusb-1.0 -I${XBPS_CROSS_BASE}/usr/include/python2.7"
|
|
|
|
pre_configure() {
|
|
export AUTOMAKE='automake --foreign'
|
|
libtoolize -f
|
|
autoreconf -fi || true
|
|
}
|
|
|
|
do_install() {
|
|
# remove wildcard install of ppd files to avoid errors when overwriting
|
|
sed -i Makefile -e "s;ppd/hpcups/\\*.ppd.gz;;g"
|
|
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 unwanted files
|
|
rm -f ${DESTDIR}/usr/share/doc/hplip-${version}/{copyright,README_LIBJPG,COPYING}
|
|
# remove HAL .fdi file because HAL is no longer used
|
|
rm -rf ${DESTDIR}/usr/share/hal
|
|
rm -rf ${DESTDIR}/var
|
|
# remove systemd service file
|
|
rm -rf ${DESTDIR}/usr/lib/systemd
|
|
# save gui-version of hplip.conf
|
|
cp -p ${DESTDIR}/etc/hp/hplip.conf /tmp/hplip.conf
|
|
# adjust values to non-gui version
|
|
sed -i ${PKGDESTDIR}/etc/hp/hplip.conf \
|
|
-e "s/\(gui-build=\).*/\1no/" \
|
|
-e "s/\(ui-toolkit=\).*/\1no/" \
|
|
-e "s/\(qt5=\).*/\1no/"
|
|
# licenses
|
|
vlicense COPYING
|
|
vlicense copyright
|
|
}
|
|
|
|
hplip-gui_package() {
|
|
depends="python-gobject2 python-dbus desktop-file-utils
|
|
foomatic-db foomatic-db-engine python-PyQt5-dbus"
|
|
short_desc+=" (with GUI)"
|
|
conflicts="hplip"
|
|
pkg_install() {
|
|
vmove usr/bin/hp-toolbox
|
|
vmove usr/share/applications
|
|
vmove usr/share/hplip/ui5
|
|
vmove usr/share/hplip/data/images
|
|
cp -a ${DESTDIR}/. ${PKGDESTDIR}/
|
|
# restore gui-version of hplip.conf
|
|
mv /tmp/hplip.conf ${PKGDESTDIR}/etc/hp/
|
|
}
|
|
}
|