diff options
author | Dennis Herrmann <dhn@FreeBSD.org> | 2011-03-07 12:55:24 +0000 |
---|---|---|
committer | Dennis Herrmann <dhn@FreeBSD.org> | 2011-03-07 12:55:24 +0000 |
commit | 28a3674ea8b1ff47d648d743e43551c1850a4b82 (patch) | |
tree | 6949db00f5c28cf96251fb5b44ce09e1f20b2da2 /textproc/smu | |
parent | 4ee7c7a2e2bfaaff7732628fbe6ebd655a4e7e53 (diff) | |
download | ports-28a3674ea8b1ff47d648d743e43551c1850a4b82.tar.gz ports-28a3674ea8b1ff47d648d743e43551c1850a4b82.zip |
smu - simple markup
Smu is a simple interpreter for a simplified markdown dialect.
WWW: http://s01.de/~tox/index.cgi/proj_smu
Notes
Notes:
svn path=/head/; revision=270436
Diffstat (limited to 'textproc/smu')
-rw-r--r-- | textproc/smu/Makefile | 27 | ||||
-rw-r--r-- | textproc/smu/distinfo | 2 | ||||
-rw-r--r-- | textproc/smu/pkg-descr | 4 |
3 files changed, 33 insertions, 0 deletions
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 |