c3ac316e57
The Munkres module provides an implementation of the Munkres algorithm (also called the Hungarian algorithm or the Kuhn-Munkres algorithm), useful for solving the Assignment Problem. from Nils R, ok sthen@
23 lines
438 B
Makefile
23 lines
438 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2014/05/11 20:53:29 benoit Exp $
|
|
|
|
COMMENT = munkres algorithm for the Assignment Problem
|
|
|
|
MODPY_EGG_VERSION = 1.0.6
|
|
DISTNAME = munkres-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-algorithm-${DISTNAME}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = http://software.clapper.org/munkres/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_PYPI:=/m/munkres/}
|
|
|
|
MODULES = lang/python
|
|
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|