diff options
author | dhn <dhn@FreeBSD.org> | 2011-03-07 20:55:24 +0800 |
---|---|---|
committer | dhn <dhn@FreeBSD.org> | 2011-03-07 20:55:24 +0800 |
commit | 3a966971ef6de70a8c6dd76a0a138c8424797224 (patch) | |
tree | 9a66ccd8f6318dd474b4664a5d1b7bd02527484f | |
parent | 256e5f84add20bccd9fe39c0aecd98bf373dcfe7 (diff) | |
download | freebsd-ports-gnome-3a966971ef6de70a8c6dd76a0a138c8424797224.tar.gz freebsd-ports-gnome-3a966971ef6de70a8c6dd76a0a138c8424797224.tar.zst freebsd-ports-gnome-3a966971ef6de70a8c6dd76a0a138c8424797224.zip |
smu - simple markup
Smu is a simple interpreter for a simplified markdown dialect.
WWW: http://s01.de/~tox/index.cgi/proj_smu
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/smu/Makefile | 27 | ||||
-rw-r--r-- | textproc/smu/distinfo | 2 | ||||
-rw-r--r-- | textproc/smu/pkg-descr | 4 |
4 files changed, 34 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index dfecd592baef..ce2cfd0c80a6 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1205,6 +1205,7 @@ SUBDIR += slides SUBDIR += smartdoc SUBDIR += sml-fxp + SUBDIR += smu SUBDIR += soothsayer SUBDIR += soprano SUBDIR += source-highlight diff --git a/textproc/smu/Makefile b/textproc/smu/Makefile new file mode 100644 index 000000000000..de9451572ba7 --- /dev/null +++ b/textproc/smu/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: smu +# Date created: 2011-03-07 +# Whom: Dennis Herrmann <dhn@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= smu +PORTVERSION= 1.2 +CATEGORIES= textproc +MASTER_SITES= http://s01.de/~tox/files/smu/ \ + http://mirror.4bit.ws/ + +MAINTAINER= dhn@FreeBSD.org +COMMENT= A simple interpreter for a simplified markdown dialect + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +MAN1= smu.1 +PLIST_FILES= bin/smu + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/smu ${PREFIX}/bin + @${INSTALL_MAN} ${WRKSRC}/smu.1 ${MAN1PREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/textproc/smu/distinfo b/textproc/smu/distinfo new file mode 100644 index 000000000000..ebb09ccd2633 --- /dev/null +++ b/textproc/smu/distinfo @@ -0,0 +1,2 @@ +SHA256 (smu-1.2.tar.gz) = 04a018db551ec53bb6a083b60ac9eb2fcfa8a8c58cd2d40f797dc5507de2a434 +SIZE (smu-1.2.tar.gz) = 5495 diff --git a/textproc/smu/pkg-descr b/textproc/smu/pkg-descr new file mode 100644 index 000000000000..9ac02cec1e51 --- /dev/null +++ b/textproc/smu/pkg-descr @@ -0,0 +1,4 @@ +smu - simple markup +Smu is a simple interpreter for a simplified markdown dialect. + +WWW: http://s01.de/~tox/index.cgi/proj_smu |