pkgsrc/shells/git-sh/Makefile
wiz 70a1b72d7c Import git-sh-1.3 as shells/git-sh.
git-sh is a customized bash shell suitable for git work.

The git-sh command starts an interactive bash shell tweaked for
heavy git interaction:

* All git commands available at top-level (checkout master = git
  checkout master)
* All git aliases defined in the [alias] section of ~/.gitconfig
  available at top-level.
* Shawn O. Pearce's excellent bash completion strapped onto all
  core commands and git aliases.
* Custom prompt with current branch, repository, and work tree
  dirty indicator.
* Customizable via /etc/gitshrc and ~/.gitshrc config files; for
  creating aliases, changing the prompt, etc.
* Runs on top of normal bash (~/.bashrc) and readline (~/.inputrc)
  configurations.
2015-02-08 16:53:55 +00:00

19 lines
560 B
Makefile

# $NetBSD: Makefile,v 1.1 2015/02/08 16:53:55 wiz Exp $
VERSION= 1.3
DISTNAME= git-sh-${VERSION}
CATEGORIES= shells
MASTER_SITES= -https://github.com/rtomayko/git-sh/archive/${VERSION}${EXTRACT_SUFX}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/rtomayko/git-sh/
COMMENT= Customized bash environment suitable for git work
LICENSE= gnu-gpl-v2
USE_LANGUAGES= # none
USE_TOOLS+= bash:run
REPLACE_BASH+= git-sh.bash
MAKE_FLAGS+= PREFIX=${DESTDIR}${PREFIX}
MAKE_FLAGS+= mandir=${DESTDIR}${PREFIX}/${PKGMANDIR}/
.include "../../mk/bsd.pkg.mk"