53d1d03f74
Also expand README to explain how to generate a custom config.h and some hints on using this port as a reference for a private and customized dvtm port.
24 lines
530 B
Plaintext
24 lines
530 B
Plaintext
# Description: dynamic virtual terminal manager
|
|
# URL: http://www.brain-dump.org/projects/dvtm
|
|
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
|
|
# Depends on: ncurses
|
|
|
|
name=dvtm
|
|
version=0.15
|
|
release=2
|
|
source=(http://www.brain-dump.org/projects/$name/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd "$name-$version"
|
|
|
|
if [ -f $PKGMK_ROOT/config.h ]; then
|
|
cp $SRC/config.h .
|
|
fi
|
|
|
|
make
|
|
make DESTDIR=$PKG PREFIX=/usr install
|
|
|
|
# remove redundant terminfo files that conflict with ncurses
|
|
rm -rf $PKG/usr/share/terminfo
|
|
}
|