summaryrefslogtreecommitdiff
path: root/tcsh/Pkgfile
blob: 8df709bfbc6b8e009df7a4b31b58f8cfef90b251 (plain)
    1 # Description: Enhanced version of the Berkeley C shell (csh)
    2 # URL:         https://www.tcsh.org
    3 # Maintainer:  Juergen Daubert, jue at crux dot nu
    4 # Depends on:  ncurses
    5 
    6 name=tcsh
    7 version=6.22.03
    8 release=1
    9 source=(ftp://ftp.astron.com/pub/tcsh/$name-$version.tar.gz \
   10         csh.login csh.logout csh.cshrc)
   11 
   12 build() {
   13     cd $name-$version
   14 
   15     ./configure --prefix=/usr --bindir=/bin
   16     make CFLAGS="$CFLAGS -fcommon"
   17     make DESTDIR=$PKG install
   18 
   19     rm -r $PKG/usr/share/locale
   20 
   21     install -d $PKG/etc
   22     install -m 644 $SRC/csh.* $PKG/etc
   23 }

Generated by cgit