# HG changeset patch # User Hans-G?nter Theisgen # Date 1571499859 -3600 # Node ID ce493bead59a8d89f3496a73f742754409380b0f # Parent 3dee29a5455cb94a3879ccf7754ee8c869ef4e01 updated tcsh (6.18.01 -> 6.21.00) diff -r 3dee29a5455c -r ce493bead59a tcsh/receipt --- a/tcsh/receipt Sat Oct 19 16:30:51 2019 +0100 +++ b/tcsh/receipt Sat Oct 19 16:44:19 2019 +0100 @@ -1,14 +1,15 @@ # SliTaz package receipt. PACKAGE="tcsh" -VERSION="6.18.01" +VERSION="6.21.00" CATEGORY="system-tools" SHORT_DESC="Enhanced, compatible Berkeley UNIX C shell." MAINTAINER="samuel_trassare@yahoo.com" LICENSE="BSD" -WEB_SITE="https://github.com/tcsh-org/tcsh" # http://www.tsch.org/Welcome -TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="ftp://ftp.astron.com/pub/$PACKAGE/$TARBALL" +WEB_SITE="https://www.tcsh.org/" + +TARBALL="TCSH${VERSION//./_}.tar.gz" +WGET_URL="https://github.com/tcsh-org/$PACKAGE/archive/$TARBALL" #The following build dep will be necessary when glibc ups to 2.14. #BUILD_DEPENDS="libtirpc" @@ -21,17 +22,20 @@ export LDFLAGS="$LDFLAGS -ltinfo" mkdir -p $DESTDIR/usr/bin touch $DESTDIR/usr/bin/tcsh + ./configure $CONFIGURE_ARGS && make && make install && + rm -f $DESTDIR/usr/bin/tcsh.old } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin \ - $fs/usr/share - cp -a $install/usr/bin/tcsh $fs/usr/bin - cp -ar $install/usr/share/locale $fs/usr/share + mkdir -p $fs/usr/bin + mkdir -p $fs/usr/share + + cp -a $install/usr/bin/tcsh $fs/usr/bin + cp -ar $install/usr/share/locale $fs/usr/share }