19 lines
398 B
Bash
Executable File
19 lines
398 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < 01-links-tabbed.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-graphics \
|
|
--without-ipv6 \
|
|
--without-libevent \
|
|
--without-gpm \
|
|
--without-libtiff \
|
|
--without-librsvg \
|
|
--disable-png-pkgconfig \
|
|
--with-x \
|
|
--mandir=/usr/share/man
|
|
|
|
make
|
|
make DESTDIR="$1" install
|