opt/tcsh/Pkgfile
Juergen Daubert c096a9851a Merge branch '3.5' into 3.6
Conflicts:
	imagemagick/.signature
	tcsh/.signature
2020-11-19 15:05:54 +00:00

24 lines
553 B
Plaintext

# Description: Enhanced version of the Berkeley C shell (csh)
# URL: https://www.tcsh.org
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: ncurses
name=tcsh
version=6.22.03
release=1
source=(ftp://ftp.astron.com/pub/tcsh/$name-$version.tar.gz \
csh.login csh.logout csh.cshrc)
build() {
cd $name-$version
./configure --prefix=/usr --bindir=/bin
make CFLAGS="$CFLAGS -fcommon"
make DESTDIR=$PKG install
rm -r $PKG/usr/share/locale
install -d $PKG/etc
install -m 644 $SRC/csh.* $PKG/etc
}