core/tcsh/Pkgfile

24 lines
546 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Enhanced version of the Berkeley C shell (csh)
# URL: http://www.tcsh.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: ncurses
name=tcsh
2008-10-14 09:10:31 +02:00
version=6.16
2006-02-23 16:26:10 +01:00
release=1
source=(ftp://ftp.astron.com/pub/tcsh/$name-$version.00.tar.gz \
2008-10-14 09:10:31 +02:00
csh.login csh.logout csh.cshrc)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version.00
2008-10-14 09:10:31 +02:00
2006-02-23 16:26:10 +01:00
./configure --prefix= --mandir=/usr/man
make
2008-10-14 09:10:31 +02:00
make DESTDIR=$PKG install install.man
install -d $PKG/etc
install -m 644 $SRC/csh.* $PKG/etc
2006-02-23 16:26:10 +01:00
chmod -R +w $PKG
}