oksh is the portable version of the OpenBSD Korn shell, a continuation of the Public Domain Korn Shell (PDKSH). Its command language is a superset of the sh(1) shell language. oksh is best known as the default user shell and /bin/sh on OpenBSD. WWW: https://devio.us/~bcallah/oksh/ PR: 225097 Submitted by: Brian Callahan <bcallah@openbsd.org>
19 lines
395 B
Makefile
19 lines
395 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= oksh
|
|
DISTVERSION= 20180111
|
|
CATEGORIES= shells
|
|
MASTER_SITES= https://devio.us/~bcallah/oksh/
|
|
|
|
MAINTAINER= bcallah@openbsd.org
|
|
COMMENT= Portable OpenBSD Korn shell
|
|
|
|
LICENSE= PD
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|