9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
35 lines
974 B
Makefile
35 lines
974 B
Makefile
# $NetBSD: Makefile,v 1.34 2006/03/04 21:30:39 jlam Exp $
|
|
|
|
DISTNAME= scsh-0.6.6
|
|
PKGREVISION= 1
|
|
CATEGORIES= shells lang
|
|
MASTER_SITES= ftp://ftp.scsh.net/pub/scsh/0.6/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.scsh.net/
|
|
COMMENT= Unix shell embedded into Scheme, with access to all Posix calls
|
|
|
|
NOT_FOR_PLATFORM= *-*-alpha # Needs scheme
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
BUILD_TARGET= enough
|
|
TEST_TARGET= check
|
|
|
|
PKG_SHELL= bin/scsh
|
|
|
|
# Build references from dumped environment variables is not a problem.
|
|
CHECK_WRKREF_SKIP+= ${PREFIX}/lib/scsh/scsh.image
|
|
CHECK_WRKREF_SKIP+= ${PREFIX}/lib/scsh/stripped-scsh.image
|
|
|
|
post-configure:
|
|
cd ${WRKSRC}/scsh/bsd; ${SED} -e '/LIBGEN/d' sysdep.h >xx ; ${MV} xx sysdep.h
|
|
|
|
post-install:
|
|
@strip ${PREFIX}/bin/scsh
|
|
(cd ${WRKSRC} ; \
|
|
${INSTALL_DATA} README RELEASE 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"
|