mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
Pcodec (or Pco) losslessly compresses and decompresses numerical sequences with high compression ratio and moderately fast speed. Use cases include: - columnar data - long-term time series data - serving numerical data to web clients - low-bandwidth communication Data types: u16, u32, u64, i16, i32, i64, f16, f32, f64
23 lines
513 B
Makefile
23 lines
513 B
Makefile
PORTNAME= pcodec
|
|
PORTVERSION= 0.3.4
|
|
CATEGORIES= math python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTFILES= pcodec-${PORTVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Good compression for numerical sequences
|
|
WWW= https://github.com/pcodec/pcodec
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}maturin>=1.0<2.0:devel/py-maturin@${PY_FLAVOR}
|
|
|
|
USES= cargo python
|
|
USE_PYTHON= autoplist concurrent pep517
|
|
|
|
CARGO_BUILD= no
|
|
CARGO_INSTALL= no
|
|
|
|
.include <bsd.port.mk>
|