pkgsrc/shells/bash-completion/Makefile
wiz f80633cd80 Initial import of bash-completion-20060301:
A relatively new feature in bash is programmable completion, which
has been available since the beta version of 2.04. Programmable
completion will be familiar to you if you are a zsh user. It also
exists, albeit in a much less usable form, in tcsh.

Standard completion

bash has offered many forms of completion since its inception,
including path, file, user, host and variable completion.

    * Path-name completion
    * File-name completion
    * User-name completion
    * Host-name completion
    * Variable-name completion

Programmable completion indefinitely extends the type of completion
you can perform.

This package contains a variety of completions for various programs.
2008-03-12 09:47:58 +00:00

28 lines
833 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2008/03/12 09:47:58 wiz Exp $
#
DISTNAME= bash-completion-20060301
CATEGORIES= shells
MASTER_SITES= http://www.caliban.org/files/bash/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.caliban.org/bash/index.shtml
COMMENT= Programmable completion specifications for bash
USE_TOOLS+= bash:run
WRKSRC= ${WRKDIR}/bash_completion
USE_LANGUAGES= # none
do-build:
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/bash-completion
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/bash-completion
${INSTALL_DATA_DIR} ${PREFIX}/share/bash-completion
${INSTALL_DATA} ${WRKSRC}/bash* ${PREFIX}/share/bash-completion
${INSTALL_DATA_DIR} ${PREFIX}/share/bash-completion/contrib
${INSTALL_DATA} ${WRKSRC}/contrib/* \
${PREFIX}/share/bash-completion/contrib
.include "../../mk/bsd.pkg.mk"