85d34f0300
This module uses image libraries, Python Imaging Library (PIL) by default, to generate QR Codes. A Quick Response code is a two-dimensional pictographic code used for its fast readability and comparatively large storage capacity. The code consists of black modules arranged in a square pattern on a white background. The information encoded can be made up of any kind of data (e.g., binary, alphanumeric, or Kanji symbols) WWW: https://github.com/lincolnloop/python-qrcode PR: 196046 Differential Revision: https://reviews.freebsd.org/D1631 Submitted by: kyuupichan@gmail.com Approved by: koobs (mentor)
21 lines
464 B
Makefile
21 lines
464 B
Makefile
# Created by: Neil Booth
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qrcode
|
|
PORTVERSION= 5.1
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= kyuupichan@gmail.com
|
|
COMMENT= QR Code image generator
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.8:${PORTSDIR}/devel/py-six \
|
|
${PYTHON_PKGNAMEPREFIX}pillow>=2.6:${PORTSDIR}/graphics/py-pillow
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
.include <bsd.port.mk>
|