lanceseidman / PiCAST

PiCAST turns your $35 Raspberry Pi in to a Chromecast like Device.
https://munchron.com
1.77k stars 263 forks source link

nodejs install wheezy #49

Closed rstormsf closed 2 years ago

rstormsf commented 7 years ago

according to https://github.com/nodesource/distributions/blob/master/OLDER_DISTROS.md you need clang installed for wheezy:

#!/bin/bash

if [ "x${DIST}" == "xwheezy" ]; then
  echo "Calling $0"
  apt-get update
  apt-get -y install curl apt-transport-https ca-certificates
  echo "deb https://deb.nodesource.com/clang-3.4 wheezy main" >> /etc/apt/sources.list
  curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
  apt-get update
  apt-get install -y clang-3.4
fi
lanceseidman commented 2 years ago

Make the change and we'll merge it.