mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
ChangeLog: https://github.com/dbohdan/initool/releases/tag/v0.12.0 * Added error messages with contextual usage information. Instead of the full help message, initool will show you the arguments you gave and usage for the command you were trying to use. It will display the list of possible commands when it does not recognize the command. PR: 273118 Reported by: DtxdF@disroot.org (maintainer)
34 lines
657 B
Makefile
34 lines
657 B
Makefile
PORTNAME= initool
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.12.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= DtxdF@disroot.org
|
|
COMMENT= Manipulate INI files from the command line
|
|
WWW= https://github.com/dbohdan/initool
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= mlton>0:lang/mlton
|
|
LIB_DEPENDS= libgmp.so:math/gmp
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= dbohdan
|
|
|
|
ALL_TARGET= initool
|
|
|
|
PLIST_FILES= bin/initool
|
|
|
|
PORTDOCS= README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/initool ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|