9 lines
155 B
Bash
Executable File
9 lines
155 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
sed -i s/ncursesw\\/ncurses.h/ncurses.h/ Makefile
|
|
|
|
make
|
|
make DESTDIR="$1" install all
|
|
|
|
install -Dm 755 tine.1 "$1/usr/share/man/man1/tine.1"
|