# $Id: PKGBUILD 9873 2008-08-20 08:29:04Z allan $ # Maintainer: Allan McRae # Contributor: Judd Vinet pkgname=tk pkgver=8.5.4 pkgrel=2 pkgdesc="A windowing toolkit for use with tcl" arch=('i686' 'x86_64') url="http://tcl.sourceforge.net/" license=('custom') depends=("tcl=${pkgver}" 'libxss' 'libxft') source=(http://downloads.sourceforge.net/sourceforge/tcl/tk${pkgver}-src.tar.gz) md5sums=('a6aee7653566ec0b7c4b0f4c24a96f20') build() { cd ${srcdir}/tk${pkgver}/unix if [ "$CARCH" = "x86_64" ]; then ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads --enable-64bit else ./configure --prefix=/usr --mandir=/usr/share/man --enable-threads --disable-64bit fi make make INSTALL_ROOT=${pkgdir} install install-private-headers ln -sf wish8.5 ${pkgdir}/usr/bin/wish # install license install -Dm644 ../license.terms ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE # remove buildroot traces / fixes #3602 sed -i \ -e "s,^TK_BUILD_LIB_SPEC='-L.*/unix,TK_BUILD_LIB_SPEC='-L/usr/lib," \ -e "s,^TK_SRC_DIR='.*',TK_SRC_DIR='/usr/include'," \ -e "s,^TK_BUILD_STUB_LIB_SPEC='-L.*/unix,TK_BUILD_STUB_LIB_SPEC='-L/usr/lib," \ -e "s,^TK_BUILD_STUB_LIB_PATH='.*/unix,TK_BUILD_STUB_LIB_PATH='/usr/lib," \ ${pkgdir}/usr/lib/tkConfig.sh }