-
Notifications
You must be signed in to change notification settings - Fork 11
/
build-vyos
executable file
·69 lines (63 loc) · 2.15 KB
/
build-vyos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/sh
#
# vyatta-cjdns - A cjdns package for Ubiquiti EdgeOS, VyOS and other
# Vyatta-based systems.
# Copyright (C) 2015 Neil Alexander T.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
if [ `dpkg --status tzdata | grep Provides | cut -f 2 -d '-' | grep squeeze | wc -l` -ne 1 ];
then
echo "This script is supported on squeeze only"
exit -1
fi
echo "Checking if sudo is installed..."
dpkg -s sudo >/dev/null 2>1
if [ $? -eq 1 ];
then
echo "Installing sudo"
su -c "apt-get update; apt-get install -y sudo"
fi
echo "Checking if squeeze archive repository is a configured apt source..."
if [ `cat /etc/apt/sources.list | grep "http://archive.debian.org/debian/ squeeze" | wc -l` -ne 1 ];
then
echo "Adding squeeze archive repository to apt sources"
sudo echo "deb http://archive.debian.org/debian/ squeeze main non-free" >> /etc/apt/sources.list
fi
echo "Checking if python2.7 is installed..."
if [ `which -a python2.7 | wc -l` -lt 1 ];
then
echo "Downloading and building python2.7"
wget -P /tmp https://www.python.org/ftp/python/2.7/Python-2.7.tgz
tar -zxf /tmp/Python-2.7.tgz -C /tmp
PWD=$(shell pwd)
cd /tmp/Python-2.7/
./configure
make
sudo make install
cd $PWD
fi
echo "Checking if build-essential is installed..."
dpkg -s build-essential >/dev/null 2>1
if [ $? -eq 1 ];
then
echo "Installing build-essential"
sudo apt-get update
sudo apt-get install -y build-essential
fi
echo "Building vyatta-cjdns..."
BRANCH=$1; [ -z "${BRANCH}" ] && BRANCH=master
cd vyatta-cjdns && \
BRANCH=${BRANCH} make native && \
cd ..