svn commit: r383790 - in head/lang: . c
Muhammad Moinur Rahman
bofh at FreeBSD.org
Sat Apr 11 11:39:38 UTC 2015
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 at 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 at 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
More information about the svn-ports-all
mailing list