mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 17:04:32 +04:00
Use apk to install openssl-util in the package's test.sh. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
17 lines
226 B
Bash
17 lines
226 B
Bash
#!/bin/sh
|
|
|
|
test_afalg_engine() {
|
|
apk add openssl-util
|
|
openssl engine -t -c -v -pre DUMP_INFO afalg
|
|
}
|
|
|
|
case "$1" in
|
|
libopenssl-afalg_sync)
|
|
test_afalg_engine
|
|
;;
|
|
*)
|
|
echo "Unexpected package '$1'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|