tcsh: moved from core

This commit is contained in:
Juergen Daubert 2009-06-13 22:29:30 +02:00
parent 6af70d2433
commit bc41893dd3
6 changed files with 69 additions and 0 deletions

10
tcsh/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root bin/
-rwxr-xr-x root/root bin/tcsh
drwxr-xr-x root/root etc/
-rw-r--r-- root/root etc/csh.cshrc
-rw-r--r-- root/root etc/csh.login
-rw-r--r-- root/root etc/csh.logout
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/tcsh.1.gz

4
tcsh/.md5sum Normal file
View File

@ -0,0 +1,4 @@
e722a4480a48f445df762091de3aa76e csh.cshrc
74ee67af79e23951b7c997e25edc5ab5 csh.login
057fad717fcfaf03c6dc3a4cc4c6b604 csh.logout
55f1a41512250168ec4bf1db0e246db4 tcsh-6.16.00.tar.gz

23
tcsh/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: Enhanced version of the Berkeley C shell (csh)
# URL: http://www.tcsh.org
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: ncurses
name=tcsh
version=6.16
release=1
source=(ftp://ftp.astron.com/pub/tcsh/$name-$version.00.tar.gz \
csh.login csh.logout csh.cshrc)
build() {
cd $name-$version.00
./configure --prefix= --mandir=/usr/man
make
make DESTDIR=$PKG install install.man
install -d $PKG/etc
install -m 644 $SRC/csh.* $PKG/etc
chmod -R +w $PKG
}

22
tcsh/csh.cshrc Normal file
View File

@ -0,0 +1,22 @@
#
# /etc/csh.cshrc: tcsh(1) configuration
#
if ( "$uid" == "0" ) then
setenv PATH "/sbin:/usr/sbin:/bin:/usr/bin:/opt/bin"
else
setenv PATH "/bin:/usr/bin:/opt/bin"
endif
if ( ! -f ~/.inputrc ) then
setenv INPUTRC "/etc/inputrc"
endif
setenv LESSCHARSET "latin1"
setenv LESS "-R"
setenv CHARSET "ISO-8859-1"
set prompt="%B$ "
umask 022
# End of file

5
tcsh/csh.login Normal file
View File

@ -0,0 +1,5 @@
#
# /etc/csh.login: tcsh(1) configuration
#
# End of file

5
tcsh/csh.logout Normal file
View File

@ -0,0 +1,5 @@
#
# /etc/csh.logout: tcsh(1) configuration
#
# End of file