mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
13 lines
145 B
Bash
Executable File
13 lines
145 B
Bash
Executable File
#!/bin/sh
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
./configure \
|
|
--enable-static=yes \
|
|
--enable-shared=no \
|
|
--disable-documentation
|
|
|
|
make -j12
|
|
|
|
make install
|