summaryrefslogtreecommitdiff
path: root/print/hplip3/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'print/hplip3/pkg-install')
-rw-r--r--print/hplip3/pkg-install19
1 files changed, 0 insertions, 19 deletions
diff --git a/print/hplip3/pkg-install b/print/hplip3/pkg-install
deleted file mode 100644
index e6f2dc26c7ed..000000000000
--- a/print/hplip3/pkg-install
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-USER=hplip
-GROUP=operator
-UID=116
-
-DLLFILE=${PKG_PREFIX}/etc/sane.d/dll.conf
-
-case $2 in
-POST-INSTALL)
- echo "hpaio" >> ${DLLFILE}
- ;;
-
-POST-DEINSTALL)
- cp ${DLLFILE} ${DLLFILE}.orig
- cat ${DLLFILE}.orig | grep -v hpaio > ${DLLFILE}
- rm ${DLLFILE}.orig
- ;;
-esac