10 lines
129 B
Bash
10 lines
129 B
Bash
#!/bin/sh -e
|
|
|
|
export CFLAGS="$CFLAGS -fPIC"
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make SHLIB_LIBS=-lcurses
|
|
make DESTDIR="$1" install
|