updated the recipes of geda-gaf, pcb and gerbv. Different server, the most current...
[minipack.git] / build-all.sh
blob36f2e94a4957d94d13a12898f0cd691a30a3b9d1
1 NEVERBUILD="
2 fontconfig
5 NOBUILD="
8 BUILD="
9 libiconv
10 gettext
11 jpeg
12 zlib
13 libpng
14 tiff
15 expat
16 freetype
17 pixman
18 pkgconfig-wrapper
19 glib
20 atk
21 cairo
22 pango
23 gdk-pixbuf
24 gtk+
25 libtool
26 gmp
27 mingw-libgnurx
28 guile
30 pcb
31 geda-gaf
32 gerbv
35 fail()
37 echo
38 echo "=================="
39 echo "Build failed."
40 echo "=================="
41 exit 1
44 succeed()
46 echo
47 echo "====================="
48 echo "Build succeeded."
49 echo "====================="
52 for D in $BUILD; do
53 ./mpk source $D || fail
54 done
56 for D in $BUILD; do
57 ./mpk build $D || fail
58 done
60 succeed