1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-13 19:03:52 +02:00
openwrt-packages/utils/apk/test.sh
Paul Spooren 477081779f apk: add package
The Alpine Package Keeper is the default package manager for Alpine
Linux. They manage their own repositoriy with thousends of packages and
as musl is used for compilation, their binaries can directly run on
OpenWrt.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-01-26 19:46:02 -10:00

8 lines
90 B
Bash

#!/bin/sh
case "$1" in
"apk")
apk --version | grep "${2#*v}"
;;
esac