summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Cottlehuber <dch@FreeBSD.org>2021-03-17 14:01:23 +0000
committerDave Cottlehuber <dch@FreeBSD.org>2021-03-17 14:01:23 +0000
commit1441fc702650de757df7f73b994f654a2f444d86 (patch)
treef355eeef9ccdbeb01cc18015da3776841888bf62
parentsysutils/runj: new port (diff)
sysutils/runj: include phab review feedback
Reviewed by: tobik Sponsored by: SkunkWerks, GmbH Differential Revision: https://reviews.freebsd.org/D29292
Notes
Notes: svn path=/head/; revision=568660
-rw-r--r--sysutils/Makefile1
-rw-r--r--sysutils/runj/Makefile14
2 files changed, 5 insertions, 10 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 3d19c6ba60af..f13288d5423a 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -1205,6 +1205,7 @@
SUBDIR += rundeck3
SUBDIR += runit
SUBDIR += runit-faster
+ SUBDIR += runj
SUBDIR += runwhen
SUBDIR += rw
SUBDIR += s-tui
diff --git a/sysutils/runj/Makefile b/sysutils/runj/Makefile
index 135af006013d..696dbb3b592b 100644
--- a/sysutils/runj/Makefile
+++ b/sysutils/runj/Makefile
@@ -15,20 +15,14 @@ USE_GITHUB= yes
GH_ACCOUNT= samuelkarp
GH_TAGNAME= 42281a4
-.include "${.CURDIR}/Makefile.deps"
+.include "Makefile.deps"
-GO_TARGET= ./cmd/runj:bin/runj \
- ./cmd/runj-entrypoint:bin/runj-entrypoint \
- ./cmd/containerd-shim-runj-v1:bin/containerd-shim-runj-v1
+GO_TARGET= ./cmd/runj \
+ ./cmd/runj-entrypoint \
+ ./cmd/containerd-shim-runj-v1
PLIST_FILES= bin/runj \
bin/runj-entrypoint \
bin/containerd-shim-runj-v1
-post-install:
- ${STRIP_CMD} \
- ${STAGEDIR}${PREFIX}/bin/runj \
- ${STAGEDIR}${PREFIX}/bin/runj-entrypoint \
- ${STAGEDIR}${PREFIX}/bin/containerd-shim-runj-v1
-
.include <bsd.port.mk>