summaryrefslogtreecommitdiff
path: root/tcsh/Pkgfile
blob: f2818b1e67d6727bf57d206e7112e30198a733d8 (plain)
    1 # Description: Enhanced version of the Berkeley C shell (csh)
    2 # URL:         http://www.tcsh.org
    3 # Maintainer:  Juergen Daubert, jue at crux dot nu
    4 # Depends on:  ncurses
    5 
    6 name=tcsh
    7 version=6.19.00
    8 release=2
    9 source=(ftp://ftp.astron.com/pub/tcsh/$name-$version.tar.gz \
   10         csh.login csh.logout csh.cshrc
   11         $name-$version.patch)
   12 
   13 build() {
   14     cd $name-$version
   15 
   16     # several fixes from git, https://github.com/tcsh-org/tcsh
   17     # fix to remove compiler warning
   18     patch -p1 -i $SRC/$name-$version.patch
   19 
   20     ./configure --prefix=/usr --bindir=/bin --disable-nls
   21     make
   22     make DESTDIR=$PKG install
   23 
   24     install -d $PKG/etc
   25     install -m 644 $SRC/csh.* $PKG/etc
   26 }

Generated by cgit