mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
32 lines
693 B
Plaintext
32 lines
693 B
Plaintext
DESCRIPTION="Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, suitable for a very wide range of uses."
|
|
HOMEPAGE="http://www.tcl.tk"
|
|
SRC_URI="http://sourceforge.net/projects/tcl/files/Tcl/8.5.9/tcl8.5.9-src.tar.gz/download"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
CHECKSUM_MD5="8512d8db3233041dd68a81476906012a"
|
|
BUILD()
|
|
{
|
|
cd tcl8.5.9/unix
|
|
autoconf -f
|
|
./configure --prefix=$(finddir B_COMMON_DIRECTORY) \
|
|
--enable-threads --enable-man-symlinks
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd tcl8.5.9/unix
|
|
make install
|
|
ln -s tclsh8.5 "$(finddir B_COMMON_BIN_DIRECTORY)/tclsh"
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd tcl8.5.9/unix
|
|
make test
|
|
}
|
|
|
|
LICENSE="BSD (2-clause)"
|
|
#COPYRIGHT=""
|