ports/shells/yash/Makefile
Christian Weisgerber 2e29b5e934 New port: shells/yash
Yash, yet another shell, is a POSIX-compliant command line shell.
Yash is intended to be the most POSIX-compliant shell in the world
while supporting features for daily interactive and scripting use.
Notable features are:
* Global aliases
* Arrays
* Socket redirection, pipeline redirection, and process redirection
* Brace expansion and extended globbing
* Fractional numbers in arithmetic expansion
* Prompt command and command-not-found handler
* Command line completion with predefined completion scripts for more
  than 100 commands
* Command line prediction based on command history

WWW: https://yash.osdn.jp/index.html.en
2019-06-16 15:40:08 +00:00

28 lines
499 B
Makefile

# $FreeBSD$
PORTNAME= yash
DISTVERSION= 2.48
CATEGORIES= shells
MASTER_SITES= OSDN/yash/70439
MAINTAINER= naddy@FreeBSD.org
COMMENT= POSIX-compliant command line shell
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
USES= tar:xz
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${MANPREFIX}/man
OPTIONS_DEFINE= NLS
OPTIONS_SUB= yes
NLS_USES= gettext-runtime
NLS_CONFIGURE_ENABLE= nls
NLS_CPPFLAGS= -I${LOCALBASE}/include
NLS_LDFLAGS= -L${LOCALBASE}/lib
.include <bsd.port.mk>