mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 05:00:30 -04:00
Add a port for BinaryFileSearch. It is a binary search algorithm for big sorted files that cannot be read into RAM. Also connect it to build.
21 lines
562 B
Makefile
21 lines
562 B
Makefile
PORTNAME= binary_file_search
|
|
DISTVERSION= 0.8
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= otis@FreeBSD.org
|
|
COMMENT= Binary search algorithm for big sorted files that cannot be read into RAM
|
|
WWW= https://github.com/MrTomRod/BinaryFileSearch
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}wheel>=0.42.0:devel/py-wheel@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|