24 lines
528 B
Plaintext
24 lines
528 B
Plaintext
# 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.17
|
|
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=
|
|
make
|
|
make DESTDIR=$PKG mandir=/usr/man install install.man
|
|
|
|
install -d $PKG/etc
|
|
install -m 644 $SRC/csh.* $PKG/etc
|
|
|
|
chmod -R +w $PKG
|
|
}
|