forked from tsloughter/tilda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautogen.sh
executable file
·40 lines (32 loc) · 853 Bytes
/
autogen.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh
# This was borrowed from Gaim (see gaim.sf.net) and modified
# for our purposes. Thanks guys!
echo "This will do all the autotools stuff so that you can build"
echo "tilda successfully."
echo
echo "When it is finished, take the usual steps to install:"
echo "./configure"
echo "make"
echo "make install"
echo
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have automake installed to compile tilda";
echo;
exit;
}
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have autoconf installed to compile tilda";
echo;
exit;
}
echo "Generating configuration files for tilda, please wait..."
echo;
# Gettext
autopoint --force || exit;
# "Normal" Autoconf
aclocal -I m4 || exit;
autoconf --force || exit;
autoheader --force || exit;
automake --add-missing --force-missing || exit;