67358852de
Thompson shell. Sh6(1) is an unenhanced port of the shell, and glob6(1) is a port of its global command. Together, sh6 and glob6 provide a user interface which is backward compatible with that provided by the Sixth Edition Thompson shell and global command, but without the obvious enhancements found in osh. The original Thompson shell was principally written by Ken Thompson of Bell Labs. ok landry@
38 lines
885 B
Makefile
38 lines
885 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/06/26 22:02:32 pascal Exp $
|
|
|
|
COMMENT = Sixth Edition UNIX Shell
|
|
|
|
DISTNAME = osh-20120604
|
|
|
|
CATEGORIES = shells
|
|
|
|
HOMEPAGE = http://v6shell.org
|
|
|
|
MAINTAINER = Pascal Stumpf <Pascal.Stumpf@cubes.de>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c
|
|
|
|
MASTER_SITES = ${HOMEPAGE}/src/
|
|
|
|
MAKE_FLAGS = SYSCONFDIR="${SYSCONFDIR}" PREFIX="${TRUEPREFIX}"
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/osh
|
|
${INSTALL_DATA} ${WRKSRC}/examples/etc.osh.login \
|
|
${PREFIX}/share/examples/osh.login
|
|
${INSTALL_DATA} ${WRKSRC}/examples/etc.osh.logout \
|
|
${PREFIX}/share/examples/osh.logout
|
|
${INSTALL_DATA} ${WRKSRC}/examples/etc.osh.oshrc \
|
|
${PREFIX}/share/examples/osh.oshrc
|
|
|
|
.include <bsd.port.mk>
|