mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
b3beafc07a
Tool to compile and run C programs like a shell script. WWW: https://www.github.com/ryanmjacobs/c PR: 198365 Submitted by: neel@neelc.org
27 lines
455 B
Makefile
27 lines
455 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= c
|
|
PORTVERSION= 0.10
|
|
CATEGORIES= lang
|
|
|
|
MAINTAINER= neel@neelc.org
|
|
COMMENT= Tool to compile and run C programs like a shell script
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= bash:${PORTSDIR}/shells/bash
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ryanmjacobs
|
|
GH_TAGNAME= v${PORTVERSION}
|
|
NO_BUILD= yes
|
|
|
|
SHEBANG_FILES= c
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|