summaryrefslogtreecommitdiff
path: root/install_release.sh
blob: 8884d65a59b80153661d5f5dfb62237f7aabcc71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

ME=install_release

if (($# == 1 ))
then
    PREFIX=`echo "$1"|sed -e "s,\/$,,"`
else
    PREFIX="/usr/local/ouroboros"
fi

BUILDDIR=build
RELEASEDIR=release

bash compile_release.sh $PREFIX

cd $BUILDDIR/$RELEASEDIR
make install