~vcs-imports/stellarium/0.8

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
#!/bin/sh

(automake --version) < /dev/null > /dev/null 2>&1 || {
	echo;
	echo "You must have automake installed to compile Stellarium";
	echo;
	exit;
}

(autoconf --version) < /dev/null > /dev/null 2>&1 || {
	echo;
	echo "You must have autoconf installed to compile Stellarium";
	echo;
	exit;
}

echo "Generating configuration files for Stellarium, please wait...."
echo;

aclocal -I m4 || exit;
autoheader || exit;
automake --add-missing --copy;
autoconf || exit;
automake || exit;