wok-next rev 11724
added tcsh
author | Samuel Trassare <samuel_trassare@yahoo.com> |
---|---|
date | Mon Feb 20 16:57:34 2012 -0800 (2012-02-20) |
parents | 0c849a954ff9 |
children | b65a0f238bd5 |
files | tcsh/description.txt tcsh/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/tcsh/description.txt Mon Feb 20 16:57:34 2012 -0800 1.3 @@ -0,0 +1,5 @@ 1.4 +Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C 1.5 +shell (csh). It is a command language interpreter usable both as an interactive 1.6 +login shell and a shell script command processor. It includes a command-line 1.7 +editor, programmable word completion, spelling correction, a history mechanism, 1.8 +job control and a C-like syntax.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/tcsh/receipt Mon Feb 20 16:57:34 2012 -0800 2.3 @@ -0,0 +1,28 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="tcsh" 2.7 +VERSION="6.18.00" 2.8 +CATEGORY="system-tools" 2.9 +SHORT_DESC="Enhanced, compatible Berkeley UNIX C shell." 2.10 +MAINTAINER="samuel_trassare@yahoo.com" 2.11 +WEB_SITE="http://www.tsch.org/Welcome" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 +WGET_URL="ftp://ftp.astron.com/pub/$PACKAGE/$TARBALL" 2.14 +#The following build dep will be necessary when glibc ups to 2.14. 2.15 +#BUILD_DEPENDS="libtirpc" 2.16 + 2.17 +# Rules to configure and make the package. 2.18 +compile_rules() 2.19 +{ 2.20 + ./configure $CONFIGURE_ARGS && 2.21 + make && 2.22 + make install 2.23 +} 2.24 + 2.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.26 +genpkg_rules() 2.27 +{ 2.28 + mkdir -p $fs/usr/bin 2.29 + cp -a $install/usr/bin/tcsh $fs/usr/bin 2.30 +} 2.31 +