~linaro-maintainers/live-build/linaro-live-build-3

« back to all changes in this revision

Viewing changes to examples/hooks/lenny_chroot_sun-java5.sh

  • Committer: Daniel Baumann
  • Date: 2011-03-09 18:19:23 UTC
  • Revision ID: git-v1:c5c3f6133a0fb62ba9c2c3b839e6ea5774f9c76a
Adding debian version 3.0~a1-1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
# This is a hook for live-build(7) to install sun-java.
4
 
# To enable it, copy or symlink this hook into your config/chroot_local-hooks
5
 
# directory.
6
 
#
7
 
# Note: This hook requires packages from the non-free category. Make sure you
8
 
# enabled it in your configuration.
9
 
 
10
 
# live-build sets DEBIAN_FRONTEND to 'noninteractive' to advise debconf to not
11
 
# ask any questions while installing packages. Suns redistribution terms for
12
 
# Java do not allow this, therefore we need to overwrite DEBIAN_FRONTEND for
13
 
# this apt-get call only.
14
 
 
15
 
# In case you do accept the license terms, you can also preseed the values
16
 
# for a complete non-interactive build, by uncommenting the following three lines:
17
 
 
18
 
#echo "sun-java5-bin shared/accepted-sun-dlj-v1-1 boolean true" > /root/preseed
19
 
#debconf-set-selections < /root/preseed
20
 
#rm -f /root/preseed
21
 
 
22
 
DEBIAN_FRONTEND="dialog" apt-get install --yes sun-java5-bin sun-java5-demo \
23
 
        sun-java5-doc sun-java5-fonts sun-java5-jdk sun-java5-jre \
24
 
        sun-java5-plugin sun-java5-source
25
 
 
26
 
# Ensure that /tmp has the right permissions; apparently sun-java5-doc tampers
27
 
# with it
28
 
chmod 1777 /tmp