freebsd-ports/shells/Makefile
Akinori MUSHA f8eeebacaa Add ruby-shell, a Ruby library to run commands and control jobs like a
shell.  Pipes and redirections work just as expected:

  sh = Shell.cd("/foo")
  sh.cat("bar") | sh.tee("baz") > "baa"
  # or
  sh.transact do
    cat("bar") | tee("baz") > "baa"
  end
2001-03-16 09:02:00 +00:00

27 lines
464 B
Makefile

# $FreeBSD$
#
SUBDIR += 44bsd-csh
SUBDIR += bash1
SUBDIR += bash2
SUBDIR += es
SUBDIR += esh
SUBDIR += flash
SUBDIR += ksh93
SUBDIR += mudsh
SUBDIR += osh
SUBDIR += pash
SUBDIR += pdksh
SUBDIR += perlsh
SUBDIR += rc
SUBDIR += ruby-shell
SUBDIR += sash
SUBDIR += scsh
SUBDIR += tcsh
SUBDIR += vshnu
SUBDIR += wapsh
SUBDIR += zsh
SUBDIR += zsh-devel
.include <bsd.port.subdir.mk>