tcsh: update to 6.16

This commit is contained in:
Juergen Daubert 2008-10-14 09:10:31 +02:00
parent 850c09455e
commit e6981144c7
2 changed files with 9 additions and 8 deletions

View File

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

View File

@ -4,19 +4,20 @@
# Depends on: ncurses
name=tcsh
version=6.15
version=6.16
release=1
source=(ftp://ftp.astron.com/pub/tcsh/$name-$version.00.tar.gz \
csh.login csh.logout csh.cshrc)
csh.login csh.logout csh.cshrc)
build() {
cd $name-$version.00
./configure --prefix= --mandir=/usr/man
make
make DESTDIR=$PKG install
make DESTDIR=$PKG install.man
install -D -m 644 ../csh.login $PKG/etc/csh.login
install -D -m 644 ../csh.logout $PKG/etc/csh.logout
install -D -m 644 ../csh.cshrc $PKG/etc/csh.cshrc
make DESTDIR=$PKG install install.man
install -d $PKG/etc
install -m 644 $SRC/csh.* $PKG/etc
chmod -R +w $PKG
}