blob: 62ef61d0e92006f4b3a206662d3f7b927f25d439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo "Registering iscan plugins and firmwares"
iscan-registry --add interpreter usb 0x04b8 0x014a \
/usr/lib/iscan/libiscan-plugin-perfection-v370 \
/usr/share/iscan/esfwdd.bin
}
pre_remove() {
echo "Unregistering iscan plugins and firmwares"
iscan-registry --remove interpreter usb 0x04b8 0x014a \
/usr/lib/iscan/libiscan-plugin-perfection-v370 \
/usr/share/iscan/esfwdd.bin
}
|