mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
30fe21fd31
I meant to cd to devel/premake4 and started cleaning up this port by mistake. Oh well. Portlint is now happy and danfe@ will be happy that I unmasked and installation command.
30 lines
656 B
Makefile
30 lines
656 B
Makefile
# Created by: michael johnson <ahze@ahze.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= premake
|
|
PORTVERSION= 3.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/Premake/${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
|
|
|
MAINTAINER= lippe@FreeBSD.org
|
|
COMMENT= Build script creation tool
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
WRKSRC= ${WRKDIR}/Premake-${PORTVERSION}
|
|
|
|
USES= gmake dos2unix zip
|
|
|
|
PLIST_FILES= bin/premake
|
|
|
|
PORTDOCS= CHANGES.txt LICENSE.txt README.txt
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/premake ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|