1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

Python binding for the lz4 compression library by Yann Collet.

WWW: https://github.com/steeve/python-lz4
This commit is contained in:
Jung-uk Kim 2015-06-10 17:01:03 +00:00
parent 013b867487
commit 52dc4d3ce6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=389077
4 changed files with 26 additions and 0 deletions

View File

@ -161,6 +161,7 @@
SUBDIR += pxz
SUBDIR += py-liblzma
SUBDIR += py-librtfcomp
SUBDIR += py-lz4
SUBDIR += py-lzma
SUBDIR += py-python-snappy
SUBDIR += qpress

20
archivers/py-lz4/Makefile Normal file
View File

@ -0,0 +1,20 @@
# $FreeBSD$
PORTNAME= lz4
PORTVERSION= 0.7.0
CATEGORIES= archivers python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ports@FreeBSD.org
COMMENT= Python binding for the LZ4 compression library
LICENSE= BSD3CLAUSE
USE_PYTHON= autoplist distutils
USES= python
post-install:
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/lz4.so
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (lz4-0.7.0.tar.gz) = cd225744298568fd217577fc14a326a24835412374dadb5060db48f1af43eb48
SIZE (lz4-0.7.0.tar.gz) = 26786

View File

@ -0,0 +1,3 @@
Python binding for the lz4 compression library by Yann Collet.
WWW: https://github.com/steeve/python-lz4