blob: 3316a98a7b6d232248f63620f0d4c730cd0d2ec5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo "Running iscan-registry to register plugins and firmware with iscan"
iscan-registry --add interpreter usb 0x04b8 0x013b /usr/lib/iscan/libiscan-plugin-perfection-v550 /usr/share/iscan/esfweb.bin
}
pre_remove() {
echo "Unregistering v-550 plugins/firmware"
iscan-registry --remove interpreter usb 0x04b8 0x013b /usr/lib/iscan/libiscan-plugin-perfection-v550 /usr/share/iscan/esfweb.bin
}
|