git-annex/standalone/android/buildchroot-inchroot

28 lines
856 B
Text
Raw Normal View History

#!/bin/sh
# Runs inside the chroot set up by buildchroot
set -e
2014-05-24 14:44:20 -04:00
set -x
if [ "$(whoami)" != root ]; then
echo "Must run this as root!" >&2
exit 1
fi
# java needs this mounted to work
2014-04-05 13:29:17 -04:00
mount -t proc proc /proc || true
2013-09-22 13:06:32 -04:00
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.4
apt-get -y install ca-certificates curl file m4 autoconf zlib1g-dev
apt-get -y install libgnutls28-dev libxml2-dev libgsasl7-dev pkg-config c2hs
2013-09-22 22:43:09 -04:00
apt-get -y install ant default-jdk rsync wget gnupg lsof
apt-get -y install gettext unzip python
apt-get -y install locales automake
echo en_US.UTF-8 UTF-8 >> /etc/locale.gen
locale-gen
2013-09-22 13:15:25 -04:00
apt-get clean
2014-04-04 19:07:53 -04:00
useradd builder --create-home || true
2014-04-04 19:00:28 -04:00
su builder -c $0-asuser