0a32dd175f
Describe your software project with a full-featured scripting language and let Premake write the build scripts for you. With one file your project can support both IDE-addicted Windows coders and Linux command-line junkies! PR: ports/64735 Submitted by: michael johnson <ahze@ahze.net>
28 lines
591 B
Makefile
28 lines
591 B
Makefile
# New ports collection makefile for: premake
|
|
# Date created: 2004-03-25
|
|
# Whom: michael johnson <ahze@ahze.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= premake
|
|
PORTVERSION= 1.6.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= premake
|
|
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
|
|
|
MAINTAINER= ahze@ahze.net
|
|
COMMENT= Writes build scripts
|
|
|
|
USE_ZIP= yes
|
|
WRKSRC= ${WRKDIR}/Premake-${PORTVERSION}
|
|
USE_GMAKE= yes
|
|
PLIST_FILES= bin/premake
|
|
USE_REINPLACE= yes
|
|
MAKE_ENV= CC="${CC}" CFLAGS="${CFLAGS}"
|
|
|
|
do-install:
|
|
@${INSTALL} ${WRKSRC}/premake ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|