diff options
author | pawel <pawel@FreeBSD.org> | 2015-11-08 01:07:14 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2015-11-08 01:07:14 +0800 |
commit | 0b191090c346156e09c1e06b0e588e169f66d99c (patch) | |
tree | e27e9e70c4be0a9a3eaf3419126771fafcf83312 /sysutils/daemonize | |
parent | 87b03dc56348c927a06b156bf26c576f4e9ec339 (diff) | |
download | freebsd-ports-gnome-0b191090c346156e09c1e06b0e588e169f66d99c.tar.gz freebsd-ports-gnome-0b191090c346156e09c1e06b0e588e169f66d99c.tar.zst freebsd-ports-gnome-0b191090c346156e09c1e06b0e588e169f66d99c.zip |
daemonize is a command-line utility that runs a command as a Unix daemon. See
the accompanying man page for full details.
WWW: https://github.com/bmc/daemonize
PR: 203063
Submitted by: Neel Chauhan <neel@neelc.org>
Diffstat (limited to 'sysutils/daemonize')
-rw-r--r-- | sysutils/daemonize/Makefile | 25 | ||||
-rw-r--r-- | sysutils/daemonize/distinfo | 2 | ||||
-rw-r--r-- | sysutils/daemonize/pkg-descr | 4 |
3 files changed, 31 insertions, 0 deletions
diff --git a/sysutils/daemonize/Makefile b/sysutils/daemonize/Makefile new file mode 100644 index 000000000000..24d27f4f8458 --- /dev/null +++ b/sysutils/daemonize/Makefile @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= daemonize +PORTVERSION= 1.7.6 +DISTVERSIONPREFIX= release- +CATEGORIES= sysutils + +MAINTAINER= neel@neelc.org +COMMENT= Tool to run a command as a daemon + +LICENSE= BSD3CLAUSE + +GNU_CONFIGURE= yes + +USE_GITHUB= yes +GH_ACCOUNT= bmc + +PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + +.include <bsd.port.mk> + diff --git a/sysutils/daemonize/distinfo b/sysutils/daemonize/distinfo new file mode 100644 index 000000000000..87c874b1018d --- /dev/null +++ b/sysutils/daemonize/distinfo @@ -0,0 +1,2 @@ +SHA256 (bmc-daemonize-release-1.7.6_GH0.tar.gz) = 8d5717ae5e5bbd4cd6687abe1310f4d817468c67b851ce95dda73038ab40db1f +SIZE (bmc-daemonize-release-1.7.6_GH0.tar.gz) = 65928 diff --git a/sysutils/daemonize/pkg-descr b/sysutils/daemonize/pkg-descr new file mode 100644 index 000000000000..5e9e1cb0a318 --- /dev/null +++ b/sysutils/daemonize/pkg-descr @@ -0,0 +1,4 @@ +daemonize is a command-line utility that runs a command as a Unix daemon. See +the accompanying man page for full details. + +WWW: https://github.com/bmc/daemonize |