updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / lexmark-inkjet-legacy / lx.install
blobe6d0f94ccdf17f796b7a020036a4717e7c5488e1
1 post_install() {
2     
3     echo -e "\n\e[0;34m>>> To install your Lexmark printer run as root"
4     echo ">>> (don't use \"sudo\", it will not work):"
5     echo ">>>"
6     echo ">>>  # lx-postinstall.sh"
7     echo ">>>"
8     echo ">>> and add your user to the \"scanner\" group:"
9     echo ">>>"
10     echo ">>>  # gpasswd -a \$yourusername scanner"
11     echo ">>>"
12     echo ">>> All functions are ok, except USB printing that doesn't work at all"
13     echo -e "\e[0m"
14     if [ ! `grep LexmarkLegacy_1_0_0 /etc/sane.d/dll.conf` ]; then
15         echo "LexmarkLegacy_1_0_0" >> /etc/sane.d/dll.conf
16     fi
17     ## create library symlinks
18     for L in /usr/share/lexmark/legacy/lib/liblx*.so
19     do
20         ln -s $L /usr/share/lexmark/legacy/lib/`basename $L .so`
21     done
24 post_upgrade() {
25     post_install $1
28 pre_remove() {
29     sed -i '/LexmarkLegacy_1_0_0/d' /etc/sane.d/dll.conf
30     ## remove library symlinks
31     find /usr/share/lexmark/legacy/lib -type l -iname 'liblx*' -exec rm -f '{}' ';'