pcre: fork, fix sources
[kiss-trunc88.git] / git / build
bloba42a7d231276b1bf6fb2838ba558bfc31380b3bc
1 #!/bin/sh -e
3 cat > config.mak <<EOF
4 NO_GETTEXT=YesPlease
5 NO_SVN_TESTS=YesPlease
6 NO_TCLTK=YesPlease
7 NO_EXPAT=YesPlease
8 NO_NSEC=YesPlease
9 NO_PYTHON=YesPlease
10 NO_PERL=YesPlease
11 NO_SYS_POLL_H=1
12 NO_CROSS_DIRECTORY_HARDLINKS=1
13 NO_INSTALL_HARDLINKS=1
14 EOF
16 ./configure \
17 --prefix=/usr \
18 --libexecdir=/usr/lib \
19 --without-tcltk \
20 ac_cv_lib_curl_curl_global_init=yes \
21 ac_cv_snprintf_returns_bogus=no \
22 ac_cv_fread_reads_directories=yes
24 make
25 make DESTDIR="$1" install
27 cp -Rf man "$1/usr/share/man"