From 1ea73eea5ecc6a8ed901316049259aee737ee554 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 7 Oct 2005 19:51:38 +0000 Subject: move manual to top-level directory, split out of debian-installer package --- build/build_ng.sh | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100755 build/build_ng.sh (limited to 'build/build_ng.sh') diff --git a/build/build_ng.sh b/build/build_ng.sh new file mode 100755 index 000000000..0c3c2e475 --- /dev/null +++ b/build/build_ng.sh @@ -0,0 +1,47 @@ +#!/bin/sh + +if [ -z "$languages" ]; then + # Please add languages only if they build properly. + # languages="en cs es fr ja nl pt_BR" # ca da de el eu it ru + + # Buildlist of languages to be included on RC2 CD's + languages="ca cs da de en es eu fi fr it ja nl pt_BR ru tl" +# languages="ja" +fi + +if [ -z "$architectures" ]; then + architectures="alpha arm hppa i386 ia64 m68k mips mipsel powerpc s390 sparc" +# architectures="i386" +fi + +if [ -z "$destination" ]; then + destination="/var/www/d-i/" +fi + +if [ -z "$formats" ]; then + formats="newps newpdf html htmlone text" + #formats="html" +fi + +[ -e "$destination" ] || mkdir -p "$destination" + +if [ "$official_build" ]; then + # Propagate this to children. + export official_build +fi + +#noarchdir="yes" + +for lang in $languages; do + for arch in $architectures; do +# for format in $formats; do + if [ -n "$noarchdir" ]; then + destsuffix="$lang" + else + destsuffix="${lang}/${arch}" + fi + ./buildone_ng.sh $arch $lang $formats -d "$destination/$destsuffix" +# done + done +done + -- cgit v1.2.3