Makefile 571 B

123456789101112131415161718192021222324252627282930
  1. # $OpenBSD: Makefile,v 1.1.1.1 2017/02/19 19:02:43 shadchin Exp $
  2. COMMENT = library for arbitrary-precision floating-point arithmetic
  3. MODPY_EGG_VERSION = 0.19
  4. DISTNAME = mpmath-${MODPY_EGG_VERSION}
  5. PKGNAME = py-${DISTNAME}
  6. CATEGORIES = math
  7. HOMEPAGE = http://mpmath.org/
  8. MAINTAINER = Alexandr Shadchin <shadchin@openbsd.org>
  9. # New BSD
  10. PERMIT_PACKAGE_CDROM = Yes
  11. MODULES = lang/python
  12. TEST_DEPENDS = devel/py-test${MODPY_FLAVOR}
  13. MODPY_PI = Yes
  14. FLAVORS = python3
  15. FLAVOR ?=
  16. do-test:
  17. cd ${WRKSRC} && ${MODPY_BIN} -m pytest mpmath
  18. .include <bsd.port.mk>