2a6b2084d4
Bz2file is a Python library for reading and writing bzip2-compressed files. It contains a drop-in replacement for the file interface in the standard library's bz2 module, including features from the latest development version of CPython that are not available in older releases.
21 lines
523 B
Makefile
21 lines
523 B
Makefile
# $NetBSD: Makefile,v 1.1 2019/01/09 10:28:19 adam Exp $
|
|
|
|
DISTNAME= bz2file-0.98
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= archivers python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=b/bz2file/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/nvawda/bz2file
|
|
COMMENT= Read and write bzip2-compressed files
|
|
LICENSE= apache-2.0
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 27
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${PYTHONBIN} test_bz2file.py
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|