1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

CoffeeScript is a little language that compiles into JavaScript. Underneath that

awkward Java-esque patina, JavaScript has always had a gorgeous heart. It's an
attempt to expose the good parts of JavaScript in a simple way.

WWW: http://coffeescript.org/

PR:		227412
Submitted by:	egypcio@googlemail.com
Differential Revision:	https://reviews.freebsd.org/D15025
This commit is contained in:
Renato Botelho 2018-04-13 14:41:21 +00:00
parent 212e367d7e
commit 666d46efbb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=467243
5 changed files with 65 additions and 0 deletions

View File

@ -46,6 +46,7 @@
SUBDIR += cmucl
SUBDIR += cmucl-extra
SUBDIR += cocor
SUBDIR += coffeescript
SUBDIR += cparser
SUBDIR += crystal
SUBDIR += csharp-mode.el

View File

@ -0,0 +1,38 @@
# $FreeBSD$
PORTNAME= coffeescript
DISTVERSION= 2.2.4
CATEGORIES= lang
MAINTAINER= egypcio@googlemail.com
COMMENT= Unfancy JavaScript
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= node:www/node
USE_GITHUB= yes
GH_ACCOUNT= jashkenas
PORTEXAMPLES= *.coffee
CONFLICTS_INSTALL= cake
OPTIONS_DEFINE= EXAMPLES
NO_BUILD= yes
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/lib/node_modules/${PORTNAME}
${INSTALL_SCRIPT} ${WRKSRC}/bin/cake ${STAGEDIR}${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/bin/coffee ${STAGEDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}/*.js \
${STAGEDIR}${PREFIX}/lib/node_modules/${PORTNAME}
do-install-EXAMPLES-on:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/documentation/examples/${PORTEXAMPLES} \
${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1523012723
SHA256 (jashkenas-coffeescript-2.2.4_GH0.tar.gz) = 933b6d761807fab47f72305b232fd38e50cb21b7268372b846c7c645abf4a3b4
SIZE (jashkenas-coffeescript-2.2.4_GH0.tar.gz) = 1727657

View File

@ -0,0 +1,5 @@
CoffeeScript is a little language that compiles into JavaScript. Underneath that
awkward Java-esque patina, JavaScript has always had a gorgeous heart. It's an
attempt to expose the good parts of JavaScript in a simple way.
WWW: http://coffeescript.org/

View File

@ -0,0 +1,18 @@
bin/cake
bin/coffee
lib/node_modules/coffeescript/browser.js
lib/node_modules/coffeescript/cake.js
lib/node_modules/coffeescript/coffeescript.js
lib/node_modules/coffeescript/command.js
lib/node_modules/coffeescript/grammar.js
lib/node_modules/coffeescript/helpers.js
lib/node_modules/coffeescript/index.js
lib/node_modules/coffeescript/lexer.js
lib/node_modules/coffeescript/nodes.js
lib/node_modules/coffeescript/optparse.js
lib/node_modules/coffeescript/parser.js
lib/node_modules/coffeescript/register.js
lib/node_modules/coffeescript/repl.js
lib/node_modules/coffeescript/rewriter.js
lib/node_modules/coffeescript/scope.js
lib/node_modules/coffeescript/sourcemap.js