wok rev 22015

updated tcsh (6.18.01 -> 6.21.00)
author Hans-G?nter Theisgen
date Sat Oct 19 16:44:19 2019 +0100 (2019-10-19)
parents 3dee29a5455c
children 855292eaaf20
files tcsh/receipt
line diff
     1.1 --- a/tcsh/receipt	Sat Oct 19 16:30:51 2019 +0100
     1.2 +++ b/tcsh/receipt	Sat Oct 19 16:44:19 2019 +0100
     1.3 @@ -1,14 +1,15 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="tcsh"
     1.7 -VERSION="6.18.01"
     1.8 +VERSION="6.21.00"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Enhanced, compatible Berkeley UNIX C shell."
    1.11  MAINTAINER="samuel_trassare@yahoo.com"
    1.12  LICENSE="BSD"
    1.13 -WEB_SITE="https://github.com/tcsh-org/tcsh"	# http://www.tsch.org/Welcome
    1.14 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 -WGET_URL="ftp://ftp.astron.com/pub/$PACKAGE/$TARBALL"
    1.16 +WEB_SITE="https://www.tcsh.org/"
    1.17 +
    1.18 +TARBALL="TCSH${VERSION//./_}.tar.gz"
    1.19 +WGET_URL="https://github.com/tcsh-org/$PACKAGE/archive/$TARBALL"
    1.20  #The following build dep will be necessary when glibc ups to 2.14.
    1.21  #BUILD_DEPENDS="libtirpc"
    1.22  
    1.23 @@ -21,17 +22,20 @@
    1.24  	export LDFLAGS="$LDFLAGS -ltinfo"
    1.25  	mkdir -p $DESTDIR/usr/bin
    1.26  	touch $DESTDIR/usr/bin/tcsh
    1.27 +
    1.28  	./configure $CONFIGURE_ARGS && 
    1.29  	make && 
    1.30  	make install &&
    1.31 +
    1.32  	rm -f $DESTDIR/usr/bin/tcsh.old
    1.33  }
    1.34  
    1.35  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.36  genpkg_rules()
    1.37  {
    1.38 -	mkdir -p $fs/usr/bin \
    1.39 -		$fs/usr/share
    1.40 -	cp -a $install/usr/bin/tcsh $fs/usr/bin
    1.41 -	cp -ar $install/usr/share/locale $fs/usr/share
    1.42 +	mkdir -p $fs/usr/bin
    1.43 +	mkdir -p $fs/usr/share
    1.44 +
    1.45 +	cp -a $install/usr/bin/tcsh		$fs/usr/bin
    1.46 +	cp -ar $install/usr/share/locale	$fs/usr/share
    1.47  }