mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 03:00:42 -04:00
file browser. Features: * Full bash compatibility. * Embedded visual file browser. * Two file panels, turned on and off by pressing ^O. * Actions and colors configured via .bashrc script. * Run current file on pressing Enter, configurable via commander_start_file() shell function. * Perform an action on pressing F1-F20 keys, configurable via commander_fN() shell functions. WWW: http://groups.google.com/group/bashc/web/overview
31 lines
679 B
Makefile
31 lines
679 B
Makefile
# New ports collection makefile for: bashc
|
|
# Date created: 2008-02-10
|
|
# Whom: alepulver
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bashc
|
|
PORTVERSION= 3.2.33.0
|
|
CATEGORIES= shells
|
|
MASTER_SITES= SF
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= alepulver@FreeBSD.org
|
|
COMMENT= GNU bash shell extended with visual two-panel file browser
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
|
|
|
PLIST_FILES= bin/bashc \
|
|
etc/bash_commander \
|
|
etc/bash_dialog
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|autoconf|${TRUE}|' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${SETENV} PKG_PREFIX="${PREFIX}" PKG_DESTDIR="${DESTDIR}" \
|
|
${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.mk>
|