wok diff tcl/receipt @ rev 23079

updated liblinebreak and liblinebreak-dev (2.0 -> 2.1)
author Hans-G?nter Theisgen
date Tue Mar 10 16:26:23 2020 +0100 (2020-03-10)
parents 9a27b923c7b7
children 8f2a606b1fcb
line diff
     1.1 --- a/tcl/receipt	Mon Feb 16 23:47:24 2015 +0100
     1.2 +++ b/tcl/receipt	Tue Mar 10 16:26:23 2020 +0100
     1.3 @@ -1,15 +1,17 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="tcl"
     1.7 -VERSION="8.6.3"
     1.8 +VERSION="8.6.9"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="The Tool Command Language"
    1.11 +TAGS="language programming"
    1.12 +SHORT_DESC="The Tool Command Language."
    1.13  MAINTAINER="erjo@slitaz.org"
    1.14  LICENSE="BSD"
    1.15 +WEB_SITE="https://www.tcl.tk/"
    1.16 +
    1.17  TARBALL="${PACKAGE}${VERSION}-src.tar.gz"
    1.18 -WEB_SITE="http://tcl.sourceforge.net/"
    1.19  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.20 -TAGS="language programming"
    1.21 +
    1.22  HOST_ARCH="i486 arm"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25 @@ -21,11 +23,12 @@
    1.26  			export ac_cv_func_strtod=yes 
    1.27  			sed -i s'#./${TCL_EXE}#/usr/bin/tclsh#' unix/Makefile.in ;;
    1.28  	esac
    1.29 +
    1.30  	cd $src/unix
    1.31 -	./configure \
    1.32 -		 --enable-shared \
    1.33 -		 --disable-symbols \
    1.34 -		 --mandir=/usr/share/man \
    1.35 +	./configure				\
    1.36 +		 --enable-shared		\
    1.37 +		 --disable-symbols		\
    1.38 +		 --mandir=/usr/share/man	\
    1.39  		 $CONFIGURE_ARGS &&
    1.40  	make &&
    1.41  	make install install-private-headers
    1.42 @@ -35,8 +38,10 @@
    1.43  genpkg_rules()
    1.44  {
    1.45  	mkdir -p $fs/usr/lib
    1.46 -	cp -a $install/usr/lib/tcl${VERSION:0:1}* $fs/usr/lib
    1.47 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.48 -	cp -a $install/usr/bin $fs/usr
    1.49 -	ln -sf tclsh${VERSION:0:3} $fs/usr/bin/tclsh
    1.50 +
    1.51 +	cp -a $install/usr/lib/tcl${VERSION:0:1}*	$fs/usr/lib
    1.52 +	cp -a $install/usr/lib/*.so*			$fs/usr/lib
    1.53 +	cp -a $install/usr/bin				$fs/usr
    1.54 +
    1.55 +	ln -sf tclsh${VERSION:0:3}			$fs/usr/bin/tclsh
    1.56  }