aboutsummaryrefslogtreecommitdiffstats
path: root/before_script.sh
diff options
context:
space:
mode:
authormattack108 <matt.lenc@gmail.com>2013-01-15 17:36:53 +0000
committermattack108 <matt.lenc@gmail.com>2013-01-15 17:36:53 +0000
commitd4a938c08539264add40126ff5c8ab673a8f78c1 (patch)
tree63aa44c7b3266f569e05ea65ac5dab4e2bba612c /before_script.sh
parentcceabb0f893b67ff8924e7939ab1675235f88dca (diff)
downloaddjango-wkhtmltopdf-d4a938c08539264add40126ff5c8ab673a8f78c1.tar.gz
django-wkhtmltopdf-d4a938c08539264add40126ff5c8ab673a8f78c1.tar.bz2
django-wkhtmltopdf-d4a938c08539264add40126ff5c8ab673a8f78c1.zip
Update travis with before_script.sh which install wkhtmltopdf for Travis
Diffstat (limited to 'before_script.sh')
-rw-r--r--before_script.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/before_script.sh b/before_script.sh
new file mode 100644
index 0000000..ed0b6b4
--- /dev/null
+++ b/before_script.sh
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+
+sudo aptitude install -y openssl build-essential xorg libssl-dev
+wget http://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.11.0_rc1-static-i386.tar.bz2
+tar xvjf wkhtmltopdf-0.11.0_rc1-static-i386.tar.bz2
+sudo chown root:root wkhtmltopdf-i386
+sudo mv wkhtmltopdf-i386 /usr/bin/wkhtmltopdf
+export WKHTMLTOPDF=/usr/bin/wkhtmltopdf