Date: Sat, 11 Apr 2015 11:39:36 +0000 (UTC) From: Muhammad Moinur Rahman <bofh@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383790 - in head/lang: . c Message-ID: <201504111139.t3BBda9a063948@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bofh Date: Sat Apr 11 11:39:35 2015 New Revision: 383790 URL: https://svnweb.freebsd.org/changeset/ports/383790 Log: [NEW] lang/c: Tool to compile and run C programs like a shell script 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 Added: head/lang/c/ head/lang/c/Makefile (contents, props changed) head/lang/c/distinfo (contents, props changed) head/lang/c/pkg-descr (contents, props changed) Modified: head/lang/Makefile Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Sat Apr 11 11:33:35 2015 (r383789) +++ head/lang/Makefile Sat Apr 11 11:39:35 2015 (r383790) @@ -22,6 +22,7 @@ SUBDIR += bigloo SUBDIR += bsh SUBDIR += bwbasic + SUBDIR += c SUBDIR += ccl SUBDIR += cdent SUBDIR += cduce Added: head/lang/c/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/c/Makefile Sat Apr 11 11:39:35 2015 (r383790) @@ -0,0 +1,26 @@ +# $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> Added: head/lang/c/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/c/distinfo Sat Apr 11 11:39:35 2015 (r383790) @@ -0,0 +1,2 @@ +SHA256 (ryanmjacobs-c-0.10-v0.10_GH0.tar.gz) = 958a2c2b2392b905cf39d75a3007adb47a818815a8485ca2170b4214233f6b14 +SIZE (ryanmjacobs-c-0.10-v0.10_GH0.tar.gz) = 16759 Added: head/lang/c/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/c/pkg-descr Sat Apr 11 11:39:35 2015 (r383790) @@ -0,0 +1,3 @@ +Tool to compile and run C programs like a shell script. + +WWW: https://www.github.com/ryanmjacobs/c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504111139.t3BBda9a063948>