2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-10-02 06:21:10 -06:00
repo/extra/lame/build

16 lines
Plaintext
Raw Normal View History

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