Files
haikuports/dev-lang/tcl/tcl-8.5.9.recipe
Oliver Tappe 60aba35d64 * convert all .bep files to follow shell syntax
* rename all .bep files to .recipe
2013-03-29 16:31:03 +00:00

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=""