aboutsummaryrefslogtreecommitdiffstats
path: root/extra-tools/keystoneubuntu.sh
blob: c2c0dc5bd90482aa8a10ce6e433c4e009bf0be07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

cd $(dirname $0)

"wget" https://github.com/keystone-engine/keystone/archive/0.9.1.tar.gz -o keystone.tar.gz
"tar" -xvzf 0.9.1.tar.gz
"cd" keystone-0.9.1
"mkdir" build
"cd" build
../make-share.sh
sudo make install
"cd" ../..