#!/bin/sh PKGNAM=tcl # See also version number 8.4 in the symlinks below...) VERSION=8.5.5 BUILD=1 . /etc/pkghelpers pkghelpers_env rm -rf $PKG mkdir -p $PKG cd $TMP rm -rf tcl$VERSION tar xjvf $CWD/tcl$VERSION-src.tar.bz2 || exit 1 cd tcl$VERSION || exit 1 pkghelpers_permissions mkdir -p $PKG/usr/doc/tcl$VERSION cp -a README license.terms $PKG/usr/doc/tcl$VERSION cd unix # Enforce clue sed -i "s#TCL_LIBRARY='\$(prefix)/lib/tcl\$(VERSION)'#TCL_LIBRARY='\$(prefix)/lib$LIBSUFFIX/tcl\$(VERSION)'#" configure CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib$LIBSUFFIX \ --enable-shared \ --enable-man-symlinks \ --enable-man-compression=gzip \ --enable-64bit \ --build=$ARCH-$DISTRO-linux make -j15 || make || exit 1 make install DESTDIR=$PKG # Some sources require Tcl's private headers, which might not be the # best thing but we'll include them where we've seen other teams # doing the same thing: mkdir -p $PKG/usr/include/tcl-private/{generic,unix} cp -a ../generic/*.h $PKG/usr/include/tcl-private/generic cp -a ../unix/*.h $PKG/usr/include/tcl-private/unix ( cd $PKG/usr/include/tcl-private/generic rm -f tcl.h tclDecls.h tclPlatDecls.h ln -sf ../../tcl.h . ln -sf ../../tclDecls.h . ln -sf ../../tclPlatDecls.h ) ( cd $PKG/usr/bin rm -f tclsh ln -sf tclsh8.5 tclsh ) ( cd $PKG/usr/lib$LIBSUFFIX rm -f libtcl.so ln -sf libtcl8.5.so libtcl.so ) mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG pkghelpers_fixup pkghelpers_makepkg