14 lines
176 B
Bash
Executable file
14 lines
176 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo -e "\033[1;35;47minstalling build-dependencies: $*\033[0m"
|
|
case x-${PACKAGE_MANAGER} in
|
|
x-baguette)
|
|
exit 1
|
|
;;
|
|
x-apk)
|
|
apk add $*
|
|
;;
|
|
*)
|
|
exit 1
|
|
esac
|
|
|