mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 10:10:31 -04:00
- Add LICENSE_FILE - Simplify concurrent installation: - Use USE_PYTHON=concurrent - Remove DOCSDIR - Add NO_ARCH - Add PyPI as primary WWW - Take maintainership
30 lines
651 B
Makefile
30 lines
651 B
Makefile
# Created by: Johannes Meixner <johannes@perceivon.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= yunomi
|
|
PORTVERSION= 0.3.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Metrics library with rate, distribution and timing information
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NO_ARCH= yes
|
|
USES= python
|
|
USE_LOCALE= en_US.UTF-8
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
PORTDOCS= README.rst HISTORY.rst
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|