You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
516 B
24 lines
516 B
#!/usr/bin/env bash |
|
|
|
sed -i '/MV.*old/d' Makefile.in |
|
sed -i '/{OLDSUFF}/c:' support/shlib-install |
|
|
|
sed -i 's/-Wl,-rpath,[^ ]*//' support/shobj-conf |
|
|
|
sed -e '270a\ |
|
else\ |
|
chars_avail = 1;' \ |
|
-e '288i\ result = -1;' \ |
|
-i.orig input.c |
|
|
|
./configure --prefix=/usr \ |
|
--disable-static \ |
|
--with-curses \ |
|
--docdir=/usr/share/doc/readline-8.3 |
|
|
|
make SHLIB_LIBS="-lncursesw" |
|
|
|
make install |
|
|
|
install -v -m644 doc/*.{ps,pdf,html,dvi} /usr/share/doc/readline-8.3 |
|
|
|
|