forked from Lainports/freebsd-ports
PR: 210287 Submitted by: David Wildasin <swdragonmaus@gmail.com> abduco provides session management i.e., it allows programs to be run independently from their controlling terminal. That is programs can be detached - run in the background - and then later reattached. Together with dvtm it provides a simpler and cleaner alternative to tmux or screen. abduco is in many ways very similar to dtach but is a completely independent implementation which is actively maintained, contains no legacy code, provides a few additional features, has a cleaner, more robust implementation and is distributed under the ISC license. http://www.brain-dump.org/projects/abduco/
29 lines
773 B
Makefile
29 lines
773 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= abduco
|
|
PORTVERSION= 0.6
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.brain-dump.org/projects/abduco/
|
|
|
|
MAINTAINER= swdragonmaus@gmail.com
|
|
COMMENT= Session management in a clean and simple way
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
MAKE_ARGS= CPPFLAGS="${CPPFLAGS}" STRIP="${STRIP_CMD}" \
|
|
MANPREFIX="${MANPREFIX}/man"
|
|
PLIST_FILES= bin/abduco \
|
|
man/man1/abduco.1.gz
|
|
|
|
pre-everything::
|
|
@${ECHO_MSG} "You can build abduco with your own config.h using the ABDUCO_CONF knob:"
|
|
@${ECHO_MSG} "make ABDUCO_CONF=/path/to/abduco/config.h install clean"
|
|
|
|
post-extract:
|
|
@if [ -e "${ABDUCO_CONF}" ]; then \
|
|
${ECHO_MSG} "Creating symlink: config.h -> ${ABDUCO_CONF}"; \
|
|
${LN} -fs "${ABDUCO_CONF}" ${WRKSRC}/config.h; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|