diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2020-12-27 23:48:24 +0800 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2020-12-27 23:48:24 +0800 |
commit | 1d7eefc1929b6962f9b5dbf4e69904e33ed05633 (patch) | |
tree | 7e9f5cb263525de663fe3be1cd66dff9953fbc98 /audio | |
parent | b9ea0762eecb794bd52a3c67d5f96297c96eb2c4 (diff) | |
download | freebsd-ports-gnome-1d7eefc1929b6962f9b5dbf4e69904e33ed05633.tar.gz freebsd-ports-gnome-1d7eefc1929b6962f9b5dbf4e69904e33ed05633.tar.zst freebsd-ports-gnome-1d7eefc1929b6962f9b5dbf4e69904e33ed05633.zip |
Install man pages.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/modplug-tools/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/audio/modplug-tools/Makefile b/audio/modplug-tools/Makefile index 3cfc2b5b102a..4b1b2513f523 100644 --- a/audio/modplug-tools/Makefile +++ b/audio/modplug-tools/Makefile @@ -3,6 +3,7 @@ PORTNAME= modplug-tools PORTVERSION= 0.5.4 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= ehaupt@FreeBSD.org @@ -20,6 +21,13 @@ GH_ACCOUNT= alexmyczko GNU_CONFIGURE= yes PLIST_FILES= bin/modplug123 \ - bin/modplugplay + bin/modplugplay \ + share/man/man1/modplug123.1.gz \ + share/man/man1/modplugplay.1.gz + +post-install: + ${MKDIR} ${STAGEDIR}${MANPREFIX}/share/man/man1 + ${INSTALL_MAN} ${WRKSRC}/modplug*.1 \ + ${STAGEDIR}${MANPREFIX}/share/man/man1 .include <bsd.port.mk> |