mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-04 22:15:37 -07:00
34 lines
656 B
Bash
Executable File
34 lines
656 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
cat > makeinfo <<EOF
|
|
#!/bin/sh
|
|
printf 'makeinfo (GNU texinfo) 5.2\n'
|
|
EOF
|
|
|
|
chmod +x makeinfo
|
|
export PATH=$PATH:$PWD
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-lib-path=/usr/lib:/usr/local/lib \
|
|
--enable-targets=x86_64-pep \
|
|
--enable-deterministic-archives \
|
|
--disable-gold \
|
|
--enable-lto \
|
|
--enable-ld=default \
|
|
--enable-plugins \
|
|
--disable-multilib \
|
|
--disable-werror \
|
|
--disable-gdb \
|
|
--disable-nls \
|
|
--disable-readline \
|
|
--disable-gprof \
|
|
--with-mmap \
|
|
--with-system-zlib
|
|
|
|
make configure-host
|
|
make tooldir=/usr
|
|
make DESTDIR="$1" tooldir=/usr install
|
|
|
|
ln -sf ld.bfd "$1/usr/bin/ld"
|