5a2cc5b5bd
- The chroot target now execs masterdir/bin/xbps-shell to set up correct envvars. - 2 pkgs are now in nonfree repo: adobe-flash-plugin and jre. - Renamed some vars in xbps-src to be in uppercase, notably XBPS_MACHINE. - make-repoidx target now creates the index for all "known" directories specified via XBPS_PACKAGESDIR: XBPS_MACHINE, noarch, and nonfree/XBPS_MACHINE.
37 lines
1,008 B
Text
37 lines
1,008 B
Text
# Template file for 'tcl'
|
|
pkgname=tcl
|
|
version=8.5.10
|
|
wrksrc="tcl${version}/unix"
|
|
distfiles="${SOURCEFORGE_SITE}/$pkgname/${pkgname}${version}-src.tar.gz"
|
|
short_desc="The TCL scripting language"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="www.tcl.tk"
|
|
license="tcl/tk"
|
|
checksum=f582063edd5419a39ee8f7b5c8f95d557b5daad13efb0ed2f0967ca185613bb7
|
|
long_desc="
|
|
This package contains Tcl, John Osterhout's Tool Command Language, an
|
|
exceedingly simple language great for general scripting and for
|
|
embedding in other programs."
|
|
|
|
subpackages="tcl-devel"
|
|
|
|
Add_dependency run glibc
|
|
|
|
do_build()
|
|
{
|
|
if [ "${XBPS_MACHINE}" = "x86_64" ]; then
|
|
local args="${configure_args} --enable-64bits"
|
|
fi
|
|
|
|
./configure ${CONFIGURE_SHARED_ARGS} --enable-threads \
|
|
--without-tzdata --enable-man-symlinks $args
|
|
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install()
|
|
{
|
|
make INSTALL_ROOT=${DESTDIR} install install-private-headers
|
|
ln -sf /usr/bin/tclsh8.5 ${DESTDIR}/usr/bin/tclsh
|
|
vinstall ../license.terms 644 usr/share/licenses/tcl LICENSE
|
|
}
|