37 lines
949 B
Makefile
37 lines
949 B
Makefile
# OpenBSD makefile for: scsh
|
|
# Version required: 0.5.1
|
|
# Date created: 17 November 1997
|
|
# Whom: gene
|
|
#
|
|
# $OpenBSD: Makefile,v 1.7 2000/02/22 20:17:31 turan Exp $
|
|
#
|
|
|
|
DISTNAME= scsh-0.5.1
|
|
CATEGORIES= shells lang
|
|
NO_CDROM= "LIC: Requires licence for redistribution."
|
|
|
|
MASTER_SITES= ftp://ftp-swiss.ai.mit.edu/pub/su/scsh/
|
|
STRIP=
|
|
|
|
MAINTAINER= ports@openbsd.org
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
ALL_TARGET= enough
|
|
MAN1= scsh.1
|
|
|
|
post-install:
|
|
(cd ${WRKSRC} ; \
|
|
${INSTALL_DATA} README RELEASE NEWS COPYING ${PREFIX}/lib/scsh/doc)
|
|
rm -f ${PREFIX}/share/doc/scsh
|
|
ln -fs ${PREFIX}/lib/scsh/doc ${PREFIX}/share/doc/scsh
|
|
@echo
|
|
@echo "Finished installing $(DISTNAME)"
|
|
@echo "To complete the install, you should notify the system"
|
|
@echo "that $(PREFIX)/bin/scsh is a valid shell by adding it to"
|
|
@echo "/etc/shells."
|
|
@echo "If you are unfamiliar with this file, consult the shells(5)"
|
|
@echo "manual page."
|
|
|
|
.include <bsd.port.mk>
|