mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 23:34:31 +04:00
This adapts the package to semantic versioning. Added a simple Ci test script. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
17 lines
231 B
Bash
17 lines
231 B
Bash
#!/bin/sh
|
|
|
|
test_afalg_engine() {
|
|
opkg install 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
|