opt/tcsh/Pkgfile

22 lines
516 B
Plaintext
Raw Normal View History

2009-06-13 22:29:30 +02:00
# 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
2012-01-15 16:38:34 +01:00
version=6.18
2009-06-13 22:29:30 +02:00
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
2012-01-15 16:38:34 +01:00
./configure --prefix= --disable-nls
2009-06-13 22:29:30 +02:00
make
2012-01-15 16:38:34 +01:00
make DESTDIR=$PKG mandir=/usr/man install
2009-06-13 22:29:30 +02:00
install -d $PKG/etc
install -m 644 $SRC/csh.* $PKG/etc
}