2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-10-01 05:51:05 -06:00
repo/core/git/build

23 lines
392 B
Plaintext
Raw Normal View History

2019-06-02 01:00:13 -06:00
#!/bin/sh -e
2019-09-07 10:51:37 -06:00
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_SYS_POLL_H=1
NO_CROSS_DIRECTORY_HARDLINKS=1
NO_INSTALL_HARDLINKS=1
EOF
2019-06-18 06:17:49 -06:00
./configure \
2019-09-07 10:00:30 -06:00
--prefix=/usr \
ac_cv_snprintf_returns_bogus=no \
2019-09-07 10:51:37 -06:00
ac_cv_fread_reads_directories=yes
2019-06-02 01:00:13 -06:00
make
2019-09-07 10:51:37 -06:00
make DESTDIR="$1" install