mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
e2ea93b16f
While here: - Keep MANDIR standard - Lint the file with portfmt Reported by: Repology
43 lines
844 B
Makefile
43 lines
844 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bcal
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 2.2
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= 0mp@FreeBSD.org
|
|
COMMENT= Storage expression, unit conversion & address offset CLI calculator
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
ONLY_FOR_ARCHS= amd64
|
|
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
|
|
|
|
USES= gmake python:test,3.5+ readline
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jarun
|
|
|
|
MAKE_ARGS= CFLAGS_OPTIMIZATION=
|
|
|
|
PLIST_FILES= bin/bcal \
|
|
share/man/man1/bcal.1.gz
|
|
|
|
PORTDOCS= CHANGELOG README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/bcal
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}/${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
do-test:
|
|
cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v test.py
|
|
|
|
.include <bsd.port.mk>
|