diff options
| author | Daniel Engberg <diizzy@FreeBSD.org> | 2026-03-08 22:10:25 +0000 |
|---|---|---|
| committer | Daniel Engberg <diizzy@FreeBSD.org> | 2026-03-08 23:16:58 +0000 |
| commit | 583dcbe668b7c591f8cc10e4465e7204586f418d (patch) | |
| tree | 497474b0544e0713f42dc4bacac79c71bdccacad | |
| parent | a01308be852d3f12c0c1fabf6d7ce7f52ff8914d (diff) | |
devel/stdman: Improve port
As files are prerendered we just need to copy them to the correct
location. Instead of pulling in bash, gmake and addition dependencies
utilize the framework instead.
Approved by: jbo (via Matrix)
| -rw-r--r-- | devel/stdman/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/devel/stdman/Makefile b/devel/stdman/Makefile index c5e8b2d1187d..990d8e79261d 100644 --- a/devel/stdman/Makefile +++ b/devel/stdman/Makefile @@ -9,15 +9,13 @@ WWW= https://github.com/jeaye/stdman LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= bash:shells/bash - -USES= gmake - USE_GITHUB= yes GH_ACCOUNT= jeaye -HAS_CONFIGURE= yes NO_ARCH= yes NO_BUILD= yes +do-install: + ${INSTALL_MAN} ${WRKSRC}/man/*.3 ${STAGEDIR}${PREFIX}/share/man/man3 + .include <bsd.port.mk> |
