Last active
August 29, 2015 14:03
-
-
Save perezpaya/730585254dcf2d88808b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/sh | |
echo 'Becareful, this script is installing the latest version of nodejs' | |
wget http://node-arm.herokuapp.com/node_latest_armhf.deb | |
sudo dpkg -i node_latest_armhf.deb | |
node -v | |
sudo echo "deb http://archive.raspbian.org/raspbian wheezy main contrib non-free rpi" >> /etc/apt/sources.list | |
sudo echo "deb-src http://archive.raspbian.org/raspbian wheezy main contrib non-free rpi" >> /etc/apt/sources.list | |
sudo apt-get update | |
sudo apt-get install fakeroot | |
sudo apt-get install libasound2-dev alsa-utils alsa-oss | |
sudo apt-get build-dep libttspico-utils | |
cd | |
mkdir my_build/ | |
cd /my_build/ | |
sudo apt-get source libttspico-utils | |
ls | |
cd svox-* | |
sudo dpkg-buildpackage -rfakeroot -us -uc | |
cd .. | |
sudo apt-get install libttspico-utils | |
#sudo dpkg -i libttspico-utils*armhf.deb | |
#sudo dpkg -i libttspico0*armhf.deb | |
#sudo dpkg -i libttspico-data*all.deb | |
echo 'Installing wakeup' | |
cd .. | |
git clone https://github.com/CampusHacks/WakeUp.git | |
cd WakeUp/ | |
npm install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment