We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce3332f commit 84eb9b8Copy full SHA for 84eb9b8
install-deps.sh
@@ -128,6 +128,18 @@ else
128
sed -e 's/@//g' < ceph.spec.in > $DIR/ceph.spec
129
$SUDO zypper --non-interactive install $(rpmspec -q --buildrequires $DIR/ceph.spec) || exit 1
130
;;
131
+ alpine)
132
+ # for now we need the testing repo for leveldb
133
+ TESTREPO="http://nl.alpinelinux.org/alpine/edge/testing"
134
+ if ! grep -qF "$TESTREPO" /etc/apk/repositories ; then
135
+ $SUDO echo "$TESTREPO" | sudo tee -a /etc/apk/repositories > /dev/null
136
+ fi
137
+ source alpine/APKBUILD.in
138
+ $SUDO apk --update add abuild build-base ccache $makedepends
139
+ if id -u build >/dev/null 2>&1 ; then
140
+ $SUDO addgroup build abuild
141
142
+ ;;
143
*)
144
echo "$ID is unknown, dependencies will have to be installed manually."
145
exit 1
0 commit comments