diff options
author | araujo <araujo@FreeBSD.org> | 2015-11-16 11:38:38 +0800 |
---|---|---|
committer | araujo <araujo@FreeBSD.org> | 2015-11-16 11:38:38 +0800 |
commit | 28d6c57fb79463f0e9f708110cac7af278018efb (patch) | |
tree | 0568e1d1e2533b53dff61ced1c7234f190730d12 /devel | |
parent | dcaec8ae9343595b65fe33b47846ef34cec10b6f (diff) | |
download | freebsd-ports-gnome-28d6c57fb79463f0e9f708110cac7af278018efb.tar.gz freebsd-ports-gnome-28d6c57fb79463f0e9f708110cac7af278018efb.tar.zst freebsd-ports-gnome-28d6c57fb79463f0e9f708110cac7af278018efb.zip |
This library provides a simple DSL for managing user interaction
in a CLI application.
WWW: https://github.com/mose/clipromopt
PR: ports/204584
Submitted by: mose <mose@gandi.net>
Sponsored by: gandi.net
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rubygem-cliprompt/Makefile | 20 | ||||
-rw-r--r-- | devel/rubygem-cliprompt/distinfo | 2 | ||||
-rw-r--r-- | devel/rubygem-cliprompt/pkg-descr | 4 |
4 files changed, 27 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 7a4349f1c18b..208e5647e0ba 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4687,6 +4687,7 @@ SUBDIR += rubygem-classifier-reborn SUBDIR += rubygem-climate_control SUBDIR += rubygem-clio + SUBDIR += rubygem-cliprompt SUBDIR += rubygem-cloudfiles SUBDIR += rubygem-cocaine SUBDIR += rubygem-coercible diff --git a/devel/rubygem-cliprompt/Makefile b/devel/rubygem-cliprompt/Makefile new file mode 100644 index 000000000000..c45fd383de95 --- /dev/null +++ b/devel/rubygem-cliprompt/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= cliprompt +PORTVERSION= 0.1.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= mose@mose.com +COMMENT= Env aware lib for CLI prompt + +LICENSE= MIT + +RUN_DEPENDS= rubygem-paint>=1.0.0:${PORTSDIR}/devel/rubygem-paint + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/devel/rubygem-cliprompt/distinfo b/devel/rubygem-cliprompt/distinfo new file mode 100644 index 000000000000..38453d6958dc --- /dev/null +++ b/devel/rubygem-cliprompt/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/cliprompt-0.1.1.gem) = 59a8722a464cf598ac68befced2eaee9c36489ea89d661e3ac6e53e4052fba6e +SIZE (rubygem/cliprompt-0.1.1.gem) = 10240 diff --git a/devel/rubygem-cliprompt/pkg-descr b/devel/rubygem-cliprompt/pkg-descr new file mode 100644 index 000000000000..cd093824506d --- /dev/null +++ b/devel/rubygem-cliprompt/pkg-descr @@ -0,0 +1,4 @@ +This library provides a simple DSL for managing user interaction +in a CLI application. + +WWW: https://github.com/mose/clipromopt |