-
Notifications
You must be signed in to change notification settings - Fork 3
/
buildconf.sh
executable file
·55 lines (43 loc) · 1.22 KB
/
buildconf.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/sh
if [ -d .git ]; then
git submodule init
git submodule update
fi
. m4/id-config.sh
if $enable_help; then
cat <<EOF
Build the Makefiles with the configure command.
./configure [--someoption=somevalue ...]
For help on options or configuring run
./configure --help
Build and install binaries with the usual
make
make check
make install
Build distribution tarball with
make dist
Verify distribution tarball with
make distcheck
EOF
if [ -f /etc/debian_version ]; then
cat <<EOF
Or just build the Debian packages without configuring
dpkg-buildpackage -rfakeroot
When building from Git, you need these Debian packages:
autoconf automake libtool g++
xsltproc docbook docbook-xml docbook-xsl inkscape
libxslt1-dev libgnutls-dev libreadline5-dev libicu-dev
libboost-dev libboost-thread-dev libboost-test-dev
libboost-regex-dev libboost-system-dev
And if you want to make a Debian package: dpkg-dev fakeroot debhelper
(Then run "dpkg-buildpackage -rfakeroot" in this directory.)
EOF
fi
if [ "`uname -s`" = FreeBSD ]; then
cat <<EOF
pkg_add -r autoconf268 automake111 libtool bison tcl84 \\
docbook-xsl libxml2 libxslt boost-all
pkg_add -r icu4
EOF
fi
fi