Add misc/tlci: Tiny lambda calculus interpreter in C99

PR:		249344
Submitted by:	Nico Sonack <nsonack@outlook.com>
This commit is contained in:
Li-Wen Hsu 2020-09-15 19:58:54 +00:00
parent b4a2d2ae31
commit 08d7b738f1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=548745
4 changed files with 32 additions and 0 deletions

View File

@ -480,6 +480,7 @@
SUBDIR += tkinfo
SUBDIR += tkregexp
SUBDIR += tkrunit
SUBDIR += tlci
SUBDIR += toilet
SUBDIR += translate
SUBDIR += ttyrec

24
misc/tlci/Makefile Normal file
View File

@ -0,0 +1,24 @@
# $FreeBSD$
PORTNAME= tlci
DISTVERSION= 0.1.0.2
CATEGORIES= misc
MASTER_SITES= https://gitlab.com/herrhotzenplotz/tlci/
MAINTAINER= nsonack@outlook.com
COMMENT= Tiny Lambda Calculus interpreter
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITLAB= yes
GL_ACCOUNT= herrhotzenplotz
GL_COMMIT= 4a3dd51a872f36a513f06efa475922259dee91f1
PLIST_FILES= ${PREFIX}/bin/tlci \
${PREFIX}/man/man8/tlci.8.gz
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/tlci
.include <bsd.port.mk>

3
misc/tlci/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1600187213
SHA256 (herrhotzenplotz-tlci-4a3dd51a872f36a513f06efa475922259dee91f1_GL0.tar.gz) = f4cd58bd4c2e5f6a8af61ec6a1a87180ac3486738d5c8d4df5736541bfaa94dc
SIZE (herrhotzenplotz-tlci-4a3dd51a872f36a513f06efa475922259dee91f1_GL0.tar.gz) = 18410

4
misc/tlci/pkg-descr Normal file
View File

@ -0,0 +1,4 @@
The tiny lambda calculus interpreter is a portable interpreter
for an untyped lambda calculus in C99.
WWW: https://gitlab.com/herrhotzenplotz/tlci