From 45f7a859509f6dad985ab01f1e1f07450f0805f0 Mon Sep 17 00:00:00 2001 From: Martin McGrath Date: Mon, 11 Aug 2014 10:22:01 +0100 Subject: [PATCH] Install perlbrew utility Install the [perlbrew](http://perlbrew.pl/) utility, making it simple to install a development perl in future, while leaving the OS perl alone. --- profiles/devices/acer-c720/scripts/xcodestarter.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/profiles/devices/acer-c720/scripts/xcodestarter.sh b/profiles/devices/acer-c720/scripts/xcodestarter.sh index 3dec306..5c66c25 100644 --- a/profiles/devices/acer-c720/scripts/xcodestarter.sh +++ b/profiles/devices/acer-c720/scripts/xcodestarter.sh @@ -70,6 +70,14 @@ cd $tempbuild export DEBIAN_FRONTEND=noninteractive; apt-get -y -q install default-jdk touch "java.done" +# Install perlbrew, for easy installation of a non system perl +# See what is http://perlbrew.pl/ for further info + +echo "Installing perlbrew" +cd $tempbuild +export DEBIAN_FRONTEND=noninteractive; apt-get -y -q install perlbrew +touch "perlbrew.done" + echo "Installing Minecraft" cd $tempbuild export DEBIAN_FRONTEND=noninteractive; add-apt-repository -y ppa:minecraft-installer-peeps/minecraft-installer @@ -109,4 +117,4 @@ glib-compile-schemas /usr/share/glib-2.0/schemas/ touch "dconf-overrides.done" # Cleanup -rm -fr /tmp/tmp.* \ No newline at end of file +rm -fr /tmp/tmp.*