# HG changeset patch # User Samuel Trassare # Date 1329785854 28800 # Node ID 2e7585c1b74c1cf67d2bfdfbe5d19a32416c2a34 # Parent 0c849a954ff9d8afd883e0b97058e0b8354cd531 added tcsh diff -r 0c849a954ff9 -r 2e7585c1b74c tcsh/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tcsh/description.txt Mon Feb 20 16:57:34 2012 -0800 @@ -0,0 +1,5 @@ +Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C +shell (csh). It is a command language interpreter usable both as an interactive +login shell and a shell script command processor. It includes a command-line +editor, programmable word completion, spelling correction, a history mechanism, +job control and a C-like syntax. diff -r 0c849a954ff9 -r 2e7585c1b74c tcsh/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tcsh/receipt Mon Feb 20 16:57:34 2012 -0800 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="tcsh" +VERSION="6.18.00" +CATEGORY="system-tools" +SHORT_DESC="Enhanced, compatible Berkeley UNIX C shell." +MAINTAINER="samuel_trassare@yahoo.com" +WEB_SITE="http://www.tsch.org/Welcome" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="ftp://ftp.astron.com/pub/$PACKAGE/$TARBALL" +#The following build dep will be necessary when glibc ups to 2.14. +#BUILD_DEPENDS="libtirpc" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure $CONFIGURE_ARGS && + make && + make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $install/usr/bin/tcsh $fs/usr/bin +} +