31 lines
587 B
Makefile
31 lines
587 B
Makefile
# $OpenBSD: Makefile,v 1.18 2019/07/18 23:19:16 bcallah Exp $
|
|
|
|
COMMENT = small, high performance language with a modern syntax
|
|
CATEGORIES = lang
|
|
|
|
GH_ACCOUNT = marcobambini
|
|
GH_PROJECT = gravity
|
|
GH_TAGNAME = 0.7.0
|
|
|
|
HOMEPAGE = http://creolabs.com/gravity
|
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c m
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
pre-configure:
|
|
sed -i 's,-O2,${CFLAGS},g' ${WRKSRC}/Makefile \
|
|
${WRKSRC}/api/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gravity ${PREFIX}/bin
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ./gravity -t test
|
|
|
|
.include <bsd.port.mk>
|