30 lines
610 B
Plaintext
30 lines
610 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
export CFLAGS="$CFLAGS -static"
|
||
|
|
||
|
cat > config.mak <<EOF
|
||
|
NO_GETTEXT=YesPlease
|
||
|
NO_SVN_TESTS=YesPlease
|
||
|
NO_TCLTK=YesPlease
|
||
|
NO_EXPAT=YesPlease
|
||
|
NO_NSEC=YesPlease
|
||
|
NO_PYTHON=YesPlease
|
||
|
NO_PERL=YesPlease
|
||
|
NO_SVN_TESTS=YesPlease
|
||
|
NO_SYS_POLL_H=1
|
||
|
NO_CROSS_DIRECTORY_HARDLINKS=1
|
||
|
NO_INSTALL_HARDLINKS=1
|
||
|
EOF
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--libexecdir=/usr/lib \
|
||
|
ac_cv_lib_curl_curl_global_init=yes \
|
||
|
ac_cv_snprintf_returns_bogus=no \
|
||
|
ac_cv_fread_reads_directories=yes
|
||
|
|
||
|
make LIBS="$(curl-config --static-libs) libgit.a xdiff/lib.a -lz"
|
||
|
make DESTDIR="$1" install
|
||
|
|
||
|
cp -rf man "$1/usr/share/man"
|