Kiwi is an efficient C++ implementation of the Cassowary constraint solving algorithm. Kiwi is an implementation of the algorithm based on the seminal Cassowary paper. It is not a refactoring of the original C++ solver. Kiwi has been designed from the ground up to be lightweight and fast. Kiwi ranges from 10x to 500x faster than the original Cassowary solver will typical use cases gaining a 40x improvement. Memory savings are consistently > 5x
16 lines
450 B
Makefile
16 lines
450 B
Makefile
# $NetBSD: Makefile,v 1.1 2018/04/14 11:35:24 adam Exp $
|
|
|
|
DISTNAME= kiwisolver-1.0.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=k/kiwisolver/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/nucleic/kiwi
|
|
COMMENT= Fast implementation of the Cassowary constraint solver
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|