freebsd-ports/shells/poshinit/Makefile
Mateusz Piotrowski 385ae243eb New port: shells/poshinit: Portable shell setup for Bash/Zsh across FreeBSD/Linux/Cygwin
You want your shell stuff to work the same way even when you use a
different shell, or even a different box. Right?

If you use poshinit (Portable Shell Initialization), you can attain at
least most of what you desire, perhaps even all. You can log out of Bash
and log in with Zsh (or vice versa) - and your aliases/exports/functions
will continue to work as before.

It gets better - if someday you need to use a different box with a
different OS, you can get your shell to work your 'normal' way in a
jiffy. Just save your $HOME/.shell directory on your primary box, and
paste it over your second box's $HOME/.shell (after running poshinit
setup script on the second box). The second box need not be the same
operating system - poshinit works across FreeBSD / Linux / Cygwin.

WWW: https://github.com/bourne-again/poshinit

PR:		232315
Submitted by:	bourne.identity@hotmail.com
Reviewed by:	Nathan, Walter Schwarzenfeld, tobik (previous versions)
2019-08-15 10:10:22 +00:00

26 lines
537 B
Makefile

# $FreeBSD$
PORTNAME= poshinit
PORTVERSION= 1.0
CATEGORIES= shells
MAINTAINER= bourne.identity@hotmail.com
COMMENT= Portable shell setup for Bash/Zsh across FreeBSD/Linux/Cygwin
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITHUB= yes
GH_ACCOUNT= bourne-again
NO_ARCH= yes
NO_BUILD= yes
PLIST_FILES= bin/${PORTNAME} \
man/man1/${PORTNAME}.1.gz
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
.include <bsd.port.mk>