- use USE_SBCL from bsd.cl-asdf.mk
- remove obsoleted LICENSE_FILE hack - fix typo in COMMENT: wrapper vs. wrapped - install verbosely like most ports do - move plist defines after build defines (cosmetic) PR: ports/151343 Submitted by: Anonymous <swell.k@gmail.com> Approved by: maintainer timeout (dunkyp@gmail.com ; 46 days)
This commit is contained in:
parent
4919a63480
commit
0558f01523
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=265231
1 changed files with 12 additions and 14 deletions
|
@ -13,30 +13,28 @@ DISTNAME= ${PORTNAME}
|
|||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= dunkyp@gmail.com
|
||||
COMMENT= A simple wrapped for creating executables with sbcl
|
||||
|
||||
BUILD_DEPENDS= sbcl:${PORTSDIR}/lang/sbcl
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
COMMENT= A simple wrapper for creating executables with sbcl
|
||||
|
||||
LICENSE= BSD
|
||||
LICENSE_FILE= ${WRKSRC}/doc/LICENSE-buildapp
|
||||
LICENSE_FILE= ${WRKSRC}/doc/LICENSE
|
||||
|
||||
PLIST_FILES= bin/buildapp
|
||||
PORTDOCS= *
|
||||
USE_SBCL= yes
|
||||
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}-${PORTVERSION}
|
||||
ALL_TARGET=
|
||||
|
||||
post-extract:
|
||||
@${MV} ${WRKSRC}/doc/LICENSE ${WRKSRC}/doc/LICENSE-buildapp
|
||||
PLIST_FILES= bin/buildapp
|
||||
PORTDOCS= *
|
||||
|
||||
post-patch: .SILENT
|
||||
${REINPLACE_CMD} 's|sbcl|${SBCL}|' ${WRKSRC}/Makefile
|
||||
|
||||
do-install:
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
|
||||
|
||||
post-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
@(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${DOCSDIR} "! -name LICENSE*")
|
||||
${MKDIR} ${DOCSDIR}
|
||||
(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${DOCSDIR} "! -name LICENSE*")
|
||||
.endif
|
||||
|
||||
.include "${.CURDIR}/../../devel/cl-asdf/bsd.cl-asdf.mk"
|
||||
.include <bsd.port.mk>
|
||||
|
|
Loading…
Reference in a new issue