blob: 86e6199aba1a2f6d6ac32868342ce3d88ea7829a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/bash
set -e
set -x
apt-get -q -y --force-yes build-dep firefox
apt-get -q -y --force-yes install libgstreamermm-0.10-dev
cp ../../data/buildscripts/mozconfig-common .mozconfig
cat ../../data/buildscripts/mozconfig-gnulinux >> .mozconfig
rm -rf obj-gnulinux
./mach build
./mach package
[ $(arch) = "x86_64" ] || exit 0
cd obj-gnulinux/browser/locales
for locale in $(ls ../../../l10n/ -1); do
rm $PWD/mergedir -rf
make merge-$locale LOCALE_MERGEDIR=$PWD/mergedir
make langpack-$locale LOCALE_MERGEDIR=$PWD/mergedir
done
|