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>
This commit is contained in:
parent
e39fc810a4
commit
536ff8a1f7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=244580
4 changed files with 36 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
||||||
SUBDIR += bashc
|
SUBDIR += bashc
|
||||||
SUBDIR += bush
|
SUBDIR += bush
|
||||||
SUBDIR += ch
|
SUBDIR += ch
|
||||||
|
SUBDIR += dash
|
||||||
SUBDIR += es
|
SUBDIR += es
|
||||||
SUBDIR += esh
|
SUBDIR += esh
|
||||||
SUBDIR += fd
|
SUBDIR += fd
|
||||||
|
|
27
shells/dash/Makefile
Normal file
27
shells/dash/Makefile
Normal file
|
@ -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>
|
3
shells/dash/distinfo
Normal file
3
shells/dash/distinfo
Normal file
|
@ -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
|
5
shells/dash/pkg-descr
Normal file
5
shells/dash/pkg-descr
Normal file
|
@ -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/
|
Loading…
Reference in a new issue