blob: 0b0bfd5451442def12a917532e128d37904dcec2 (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo "Registering iscan plugins and firmwares"
iscan-registry --add interpreter usb 0x04b8 0x012f /usr/lib/iscan/libesint68 /usr/share/iscan/esfw68.bin
}
pre_remove() {
echo "Unregistering iscan plugins and firmwares"
iscan-registry --remove interpreter usb 0x04b8 0x012f /usr/lib/iscan/libesint68 /usr/share/iscan/esfw68.bin
}
|