contrib/dvtm/Pkgfile

24 lines
530 B
Plaintext
Raw Normal View History

2013-08-19 20:26:13 +02:00
# Description: dynamic virtual terminal manager
# URL: http://www.brain-dump.org/projects/dvtm
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
2013-08-19 20:26:13 +02:00
# Depends on: ncurses
name=dvtm
version=0.15
release=2
source=(http://www.brain-dump.org/projects/$name/$name-$version.tar.gz)
2013-08-19 20:26:13 +02:00
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
2013-08-19 20:26:13 +02:00
}