4368fb5db2
This project provides Python bindings for interfacing with the Zstandard compression library. A C extension and CFFI interface are provided. The primary goal of the project is to provide a rich interface to the underlying C API through a Pythonic interface while not sacrificing performance. This means exposing most of the features and flexibility of the C API while not sacrificing usability or safety that Python provides.
15 lines
463 B
Makefile
15 lines
463 B
Makefile
# $NetBSD: Makefile,v 1.1 2017/03/08 14:54:26 wiz Exp $
|
|
|
|
DISTNAME= zstandard-0.7.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= archivers python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=z/zstandard/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/indygreg/python-zstandard
|
|
COMMENT= Zstandard bindings for Python
|
|
LICENSE= modified-bsd
|
|
|
|
.include "../../archivers/zstd/buildlink3.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|