# $Id$
# Description:  Windows XP (TM) enhanced Notepad clone written in Tcl/Tk
# URL:          http://tclpad.sourceforge.net
# Packager:     Antonio Bonifati, ant at venus dot deis dot unical dot it
# Depends on:   tk
# Nice to have: expat, fortune, tcllib, tidy

name=tpad
version=1.3
release=2
source=(http://dl.sourceforge.net/sourceforge/tclpad/$name-$version.tar.gz \
	$name-$version.patch)

build () {
    patch -p1 < $name-$version.patch

    install -d $PKG/usr/{bin,etc,lib/tpad$version,man/man1,share/tpad}
    install bin/tpad $PKG/usr/bin
    install -m 644 etc/tpad.conf $PKG/usr/etc
    install -m 644 lib/tpad$version/*.tcl $PKG/usr/lib/tpad$version
    install -m 644 man/man1/tpad.1 $PKG/usr/man/man1
    install -m 644 share/tpad/* $PKG/usr/share/tpad
    cd $PKG/usr/bin && ln -s tpad tview
    cd $PKG/usr/man/man1 && ln -s tpad.1 tview.1
}
