Initial commit V0.01-1

This commit is contained in:
Santi Noreña 2013-01-09 14:12:27 +01:00
commit 7fe6e17db7
61 changed files with 15873 additions and 0 deletions

20
scripts/install_wheezy.sh Executable file
View file

@ -0,0 +1,20 @@
#!/bin/bash
##############################################################################
# Script de instalación de las dependencias de Libre Media Server
# en Debian Wheezy.
# Necesita root para ejecutar
# (c) 2012 Santi Noreña
# GPL License
###############################################################################
# Comprobamos root
(( EUID )) && echo You need to be root. && exit 1
#Instalamos el paquete suministrado con el release
dpkg -i ola_0.8.26-1_i386.deb
# Install Pure Data y OLA
# libav para generar thumbs
apt-get install puredata gem tcl tk libav-tools pd-pdogg pd-pan
if [ "$?" -eq "0" ]; then
echo "apt-get finish ok"
else "apt-get return errors!"
fi
apt-get -f install