void-packages/srcpkgs/hplip/hplip-gui.INSTALL
Andrew J. Hesford 316bc350dd hplip: prevent conflicts with the GUI package
The hplip-gui package uses the exact same files as the regular hplip
package, plus a few extra for the UI and three changes in the
configuration file. Rather than copy the entire package contents and
register conflict= and provides= to fool the package manager, we can
make hplip-gui depend on hplip and just manage a symlink between two
alternative configuration files.
2022-12-02 14:19:52 -05:00

7 lines
200 B
Text

case "${ACTION}" in
post)
# Link to GUI config if there is none or it is a symlink
if [ ! -e etc/hp/hplip.conf ] || [ -L etc/hp/hplip.conf ]; then
ln -sf hplip-gui.conf etc/hp/hplip.conf
fi
esac