diff options
Diffstat (limited to 'standalone/android/buildchroot-inchroot')
-rwxr-xr-x | standalone/android/buildchroot-inchroot | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/standalone/android/buildchroot-inchroot b/standalone/android/buildchroot-inchroot index 5c462d8cc..8300999b5 100755 --- a/standalone/android/buildchroot-inchroot +++ b/standalone/android/buildchroot-inchroot @@ -10,23 +10,18 @@ fi # java needs this mounted to work mount -t proc proc /proc || true -echo "deb-src http://ftp.us.debian.org/debian stable main" >> /etc/apt/sources.list +echo "deb-src http://ftp.us.debian.org/debian jessie main" >> /etc/apt/sources.list apt-get update apt-get -y install build-essential ghc git libncurses5-dev cabal-install apt-get -y install happy alex -apt-get -y install llvm-3.0 # not 3.1; buggy on arm. 3.2 is ok too +apt-get -y install llvm-3.4 apt-get -y install ca-certificates curl file m4 autoconf zlib1g-dev apt-get -y install libgnutls-dev libxml2-dev libgsasl7-dev pkg-config c2hs apt-get -y install ant default-jdk rsync wget gnupg lsof apt-get -y install gettext unzip python -apt-get -y install locales -# works around a dependncy issue with the current hjsmin -apt-get -y install libghc-hjsmin-dev +apt-get -y install locales automake echo en_US.UTF-8 UTF-8 >> /etc/locale.gen locale-gen apt-get clean -wget http://snapshot.debian.org/archive/debian/20130903T155330Z/pool/main/a/automake-1.14/automake_1.14-1_all.deb -dpkg -i automake*.deb -rm *.deb useradd builder --create-home || true su builder -c $0-asuser |