hass-core/script/install_phantomjs
2017-01-16 22:55:42 -08:00

15 lines
436 B
Bash
Executable file

#!/bin/bash
# Sets up phantomjs to be used with Home Assistant.
# Stop on errors
set -e
PHANTOMJS_VERSION="2.1.1"
cd "$(dirname "$0")/.."
mkdir -p build && cd build
curl -LSO https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2
tar -xjf phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2
mv phantomjs-$PHANTOMJS_VERSION-linux-x86_64/bin/phantomjs /usr/bin/phantomjs
/usr/bin/phantomjs -v