repo.or.cz
/
minipack.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated the recipes of geda-gaf, pcb and gerbv. Different server, the most current...
[minipack.git]
/
build-all.sh
blob
36f2e94a4957d94d13a12898f0cd691a30a3b9d1
1
NEVERBUILD
=
"
2
fontconfig
3
"
4
5
NOBUILD
=
"
6
"
7
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
29
gd
30
pcb
31
geda-gaf
32
gerbv
33
"
34
35
fail
()
36
{
37
echo
38
echo
"=================="
39
echo
"Build failed."
40
echo
"=================="
41
exit
1
42
}
43
44
succeed
()
45
{
46
echo
47
echo
"====================="
48
echo
"Build succeeded."
49
echo
"====================="
50
}
51
52
for
D
in
$BUILD
;
do
53
.
/
mpk
source
$D
|| fail
54
done
55
56
for
D
in
$BUILD
;
do
57
.
/
mpk build
$D
|| fail
58
done
59
60
succeed
61