mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
22 lines
539 B
Makefile
22 lines
539 B
Makefile
PORTNAME= sqlcipher3
|
|
DISTVERSION= 0.5.2
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Python 3 bindings for SQLCipher
|
|
WWW= https://github.com/coleifer/sqlcipher3
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libsqlcipher.so:databases/sqlcipher
|
|
|
|
USES= localbase python
|
|
USE_PYTHON= distutils autoplist pytest
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/sqlcipher3/_sqlite3${PYTHON_EXT_SUFFIX}.so
|
|
|
|
.include <bsd.port.mk>
|