1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#!/bin/sh # shellckeck shell=busybox case "$PKG_NAME" in ftdi_eeprom) ftdi_eeprom --version 2>&1 | grep -F "$PKG_VERSION" ;; libftdi1) exit 0 ;; *) echo "Untested package: $PKG_NAME" >&2 exit 1 ;; esac