# Description: Boîte à outils pour GUI
# URL: http://www.tcl.tk
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: tcl

name=tk
version=8.5.5
release=2
source=( http://downloads.sourceforge.net/tcl/${name}$version-src.tar.gz )



build() {
	# build package
		cd ${name}$version/unix
                ./configure --prefix=/usr\
			--enable-threads \
                            --mandir=/usr/share/man\
                            --infodir=/usr/share/info
		make
		make DESTDIR=$PKG install 
		make DESTDIR=$PKG install-private-headers
		ln -svf wish8.5 $PKG/usr/bin/wish

}