summaryrefslogtreecommitdiffstats
path: root/.travis/deps.pl
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-08-17 06:35:00 -0400
committerJesse Luehrs <doy@tozt.net>2014-08-17 06:35:00 -0400
commitdb3ca13185dac5802e56c18f6d181f886ff28abc (patch)
tree1634b933e52c404779e5f6e5da050986e2690e21 /.travis/deps.pl
parenta44b648ec516a0bbdcf9939186233ef8e811b1d3 (diff)
downloadcrawl-ref-db3ca13185dac5802e56c18f6d181f886ff28abc.tar.gz
crawl-ref-db3ca13185dac5802e56c18f6d181f886ff28abc.zip
travis configurationtravis
Diffstat (limited to '.travis/deps.pl')
-rw-r--r--.travis/deps.pl14
1 files changed, 14 insertions, 0 deletions
diff --git a/.travis/deps.pl b/.travis/deps.pl
new file mode 100644
index 0000000000..ffa759524e
--- /dev/null
+++ b/.travis/deps.pl
@@ -0,0 +1,14 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+
+my @deps = qw(
+ liblua5.1-0-dev
+);
+
+push @deps, qw(
+ libsdl1.2-dev
+ libsdl-image1.2-dev
+) if $ENV{TILES} || $ENV{WEBTILES};
+
+exec "sudo apt-get install @deps";