d4da9e4c9d
resolving a conflict with lang/scheme48. This should not cause any (difficult) problems. Decrease no. of lines in DESCR to satisfy `pkglint'. Bump up version number.
33 lines
964 B
Makefile
33 lines
964 B
Makefile
# $NetBSD: Makefile,v 1.15 2001/04/12 21:29:50 jtb Exp $
|
|
# FreeBSD Id: Makefile,v 1.4 1997/07/15 15:00:30 cracauer Exp
|
|
#
|
|
|
|
DISTNAME= scsh-0.5.2
|
|
PKGNAME= scsh-0.5.2nb1
|
|
CATEGORIES= shells lang
|
|
MASTER_SITES= ftp://ftp-swiss.ai.mit.edu/pub/su/scsh/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.swiss.ai.mit.edu/ftpdir/scsh/
|
|
COMMENT= Unix shell embedded into Scheme, with access to all Posix calls
|
|
|
|
NOT_FOR_PLATFORM= *-*-alpha # Needs scheme
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
ALL_TARGET= enough
|
|
MAKE_ENV= INSTALL_PROGRAM='${INSTALL_PROGRAM}' \
|
|
INSTALL_SCRIPT='${INSTALL_SCRIPT}' \
|
|
INSTALL_DATA='${INSTALL_DATA}'
|
|
|
|
post-configure:
|
|
cd ${WRKSRC}; ${SED} -e '/LIBGEN/d' sysdep.h >xx ; ${MV} xx sysdep.h
|
|
|
|
post-install:
|
|
@strip ${PREFIX}/bin/scsh
|
|
(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
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|