summaryrefslogtreecommitdiff
path: root/build/build_ng.sh
diff options
context:
space:
mode:
authorJoey Hess <joeyh@debian.org>2005-10-07 19:51:38 +0000
committerJoey Hess <joeyh@debian.org>2005-10-07 19:51:38 +0000
commit1ea73eea5ecc6a8ed901316049259aee737ee554 (patch)
tree03a077f0b1b1548f3c806bd1c5795964fba0fb52 /build/build_ng.sh
downloadinstallation-guide-1ea73eea5ecc6a8ed901316049259aee737ee554.zip
move manual to top-level directory, split out of debian-installer package
Diffstat (limited to 'build/build_ng.sh')
-rwxr-xr-xbuild/build_ng.sh47
1 files changed, 47 insertions, 0 deletions
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
+