Skip to content

Commit

Permalink
Merge pull request #83 from mariux64/update-tcsh
Browse files Browse the repository at this point in the history
tcsh: Update to version 6.19.00, csh is now a symlink to tcsh
  • Loading branch information
thomas authored Sep 27, 2016
2 parents 0a5ceee + 9f6384d commit 9f9484b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions tcsh-6.18.01-0.bee → tcsh.be0
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
#!/usr/bin/env beesh

# BEE_VERSION tcsh-6.19.00-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)

###############################################################################
## The source URL(s) define the location of the sources that will be
## downloaded. Version variables may be used to simplify reuse of this bee-file.

SRCURL[0]="ftp://ftp.funet.fi/pub/unix/shells/tcsh/tcsh-${PKGVERSION}.tar.gz"
SRCURL[0]="http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/tcsh-${PKGVERSION}.tar.gz"

###############################################################################
## Add URLs/pathes to patch files to the PATCHURL array.
Expand Down Expand Up @@ -52,16 +54,18 @@ SRCURL[0]="ftp://ftp.funet.fi/pub/unix/shells/tcsh/tcsh-${PKGVERSION}.tar.gz"
#}

#mee_configure() {
# bee_configure
# bee_configure
#}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}
mee_install() {
bee_install
( cd "${D}"/"${BEE_BINDIR}"; ln -sv tcsh csh )
( cd "${D}"/"${MANDIR}/man1"; ln -sv tcsh.1 csh.1 )
}
## by default this may be 'make install DESTDIR="${D}"'

###############################################################################
Expand Down

0 comments on commit 9f9484b

Please sign in to comment.