diff options
author | Giuseppe Pilichi <jacula@FreeBSD.org> | 2010-08-03 10:19:19 +0000 |
---|---|---|
committer | Giuseppe Pilichi <jacula@FreeBSD.org> | 2010-08-03 10:19:19 +0000 |
commit | 9c1744cd91ae0aac26c50b11e6f47699ac4b46f0 (patch) | |
tree | 308f6c6efb67d6117a163f080d9d4ff498fad3d2 /devel/buildapp/Makefile | |
parent | 58b458cd78b312b7816511bba14474dfec69bb63 (diff) |
Notes
Diffstat (limited to 'devel/buildapp/Makefile')
-rw-r--r-- | devel/buildapp/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/devel/buildapp/Makefile b/devel/buildapp/Makefile new file mode 100644 index 000000000000..a2a3e2752a25 --- /dev/null +++ b/devel/buildapp/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: buildapp +# Date created: 27 March 2010 +# Whom: dunkyp +# +# $FreeBSD$ +# + +PORTNAME= buildapp +PORTVERSION= 1.1 +CATEGORIES= devel lisp +MASTER_SITES= http://www.xach.com/lisp/ +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} + +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/doc/LICENSE-buildapp + +PLIST_FILES= bin/buildapp +PORTDOCS= * + +WRKSRC= ${WRKDIR}/${DISTNAME}-${PORTVERSION} +ALL_TARGET= + +post-extract: + @${MV} ${WRKSRC}/doc/LICENSE ${WRKSRC}/doc/LICENSE-buildapp + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/ + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${DOCSDIR} "! -name LICENSE*") +.endif + +.include <bsd.port.mk> |