2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
repo/extra/lame/build

16 lines
290 B
Plaintext
Raw Normal View History

2019-07-23 00:14:50 +00:00
#!/bin/sh -e
# Disable HTML documentation.
sed 's/html man/man/' doc/Makefile.in > _
mv -f _ doc/Makefile.in
2019-07-23 00:14:50 +00:00
./configure \
ac_cv_lib_ncurses_initscr=no \
ac_cv_lib_curses_initscr=no \
2019-07-23 00:14:50 +00:00
--prefix=/usr \
--enable-shared \
--disable-gtktest
2019-07-23 00:14:50 +00:00
make
make DESTDIR="$1" install