diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2009-11-21 05:17:19 +0000 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2009-11-21 05:17:19 +0000 |
commit | 68584fadcd33696738c316203eed71a362d482b4 (patch) | |
tree | 813f9ea8e3520cd5e6303e243d08bd128a4d684b /shells | |
parent | a340bbb4f214c8faa7196af660d9f11f2468aba8 (diff) | |
download | FreeBSD-ports-68584fadcd33696738c316203eed71a362d482b4.zip FreeBSD-ports-68584fadcd33696738c316203eed71a362d482b4.tar.gz |
DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as
possible. It does this without sacrificing speed where possible. In fact, it
is significantly faster than bash (the GNU Bourne-Again SHell) for most tasks.
WWW: http://gondor.apana.org.au/~herbert/dash/
PR: 140381
Submitted by: Eitan Adler <EitanAdlerList@gmail.com>
Diffstat (limited to 'shells')
-rw-r--r-- | shells/Makefile | 1 | ||||
-rw-r--r-- | shells/dash/Makefile | 27 | ||||
-rw-r--r-- | shells/dash/distinfo | 3 | ||||
-rw-r--r-- | shells/dash/pkg-descr | 5 |
4 files changed, 36 insertions, 0 deletions
diff --git a/shells/Makefile b/shells/Makefile index 8bf6169..4045e15 100644 --- a/shells/Makefile +++ b/shells/Makefile @@ -12,6 +12,7 @@ SUBDIR += bashc SUBDIR += bush SUBDIR += ch + SUBDIR += dash SUBDIR += es SUBDIR += esh SUBDIR += fd diff --git a/shells/dash/Makefile b/shells/dash/Makefile new file mode 100644 index 0000000..c204e19 --- /dev/null +++ b/shells/dash/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: dash +# Date created: Nov 10, 2009 +# Whom: Eitan Adler +# +# $FreeBSD$ +# + +PORTNAME= dash +PORTVERSION= 0.5.5.1 +CATEGORIES= shells +MASTER_SITES= http://gondor.apana.org.au/~herbert/dash/files/ + +MAINTAINER= EitanAdlerList@gmail.com +COMMENT= A POSIX-compliant implementation of /bin/sh + +GNU_CONFIGURE= yes +USE_GMAKE= yes +CFLAGS+= -DUNUSABLE_RT_SIGNALS + +PLIST_FILES= bin/dash +MAN1= dash.1 + +post-patch: + @${REINPLACE_CMD} -e '/COMMON_CFLAGS =/ s|$$| ${CFLAGS}|' \ + ${WRKSRC}/src/Makefile.in + +.include <bsd.port.mk> diff --git a/shells/dash/distinfo b/shells/dash/distinfo new file mode 100644 index 0000000..5a7bf1d --- /dev/null +++ b/shells/dash/distinfo @@ -0,0 +1,3 @@ +MD5 (dash-0.5.5.1.tar.gz) = 7ac832b440b91f5a52cf8eb68e172616 +SHA256 (dash-0.5.5.1.tar.gz) = 1c6717a1014c73aa16bc78a4767f1e00b40ff2a01a6c2cf2cce9a5335c24493f +SIZE (dash-0.5.5.1.tar.gz) = 208094 diff --git a/shells/dash/pkg-descr b/shells/dash/pkg-descr new file mode 100644 index 0000000..9b4b07c --- /dev/null +++ b/shells/dash/pkg-descr @@ -0,0 +1,5 @@ +DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as +possible. It does this without sacrificing speed where possible. In fact, it +is significantly faster than bash (the GNU Bourne-Again SHell) for most tasks. + +WWW: http://gondor.apana.org.au/~herbert/dash/ |