lang/crumb: New port: Crumb programming language

This commit is contained in:
Yuri Victorovich 2023-11-01 17:45:09 -07:00
parent 4ebfc66966
commit 90a56aee27
4 changed files with 37 additions and 0 deletions

View File

@ -35,6 +35,7 @@
SUBDIR += coffeescript
SUBDIR += colm
SUBDIR += cparser
SUBDIR += crumb
SUBDIR += crystal
SUBDIR += csharp-mode.el
SUBDIR += cython

24
lang/crumb/Makefile Normal file
View File

@ -0,0 +1,24 @@
PORTNAME= crumb
DISTVERSIONPREFIX= v
DISTVERSION= 0.0.2
CATEGORIES= lang devel
MAINTAINER= yuri@FreeBSD.org
COMMENT= Crumb programming language
WWW= https://github.com/liam-ilan/crumb
LICENSE= GPLv3
USE_GITHUB= yes
GH_ACCOUNT= liam-ilan
PLIST_FILES= bin/${PORTNAME}
do-build:
@cd ${WRKSRC}/src && \
${CC} ${CFLAGS} ${LDFLAGS} -lm *.c -o ${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>

3
lang/crumb/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1698885184
SHA256 (liam-ilan-crumb-v0.0.2_GH0.tar.gz) = c10bda4e42aaf8060af3018db8c3a1c388618c218b214ed95481a9204859970e
SIZE (liam-ilan-crumb-v0.0.2_GH0.tar.gz) = 7351601

9
lang/crumb/pkg-descr Normal file
View File

@ -0,0 +1,9 @@
Crumb is a high level, functional, interpreted, dynamically typed,
general-purpose programming language, with a terse syntax, and a verbose
standard library.
It features:
* Strictly no side effects* to help you write functional code
* The ability to localize the effects of imported Crumb file.
* Dynamic typing and garbage collectio.
* 0 keywords, everything is a functio.