64d070a4ed
This library is used to gain direct access to the functions exposed by Daniel J. Bernstein's nacl library via libsodium. It has been constructed to maintain extensive documentation on how to use nacl as well as being completely portable. The file in libnacl/__init__.py can be pulled out and placed directly in any project to give a single file binding to all of nacl.
23 lines
655 B
Makefile
23 lines
655 B
Makefile
# $NetBSD: Makefile,v 1.1 2018/03/08 08:13:03 adam Exp $
|
|
|
|
DISTNAME= libnacl-1.6.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= security python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=l/libnacl/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/saltstack/libnacl
|
|
COMMENT= Python bindings for libsodium based on ctypes
|
|
LICENSE= apache-2.0
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
SUBST_CLASSES+= prefix
|
|
SUBST_STAGE.prefix= pre-configure
|
|
SUBST_MESSAGE.prefix= Setting PREFIX.
|
|
SUBST_FILES.prefix= libnacl/__init__.py
|
|
SUBST_VARS.prefix= PREFIX
|
|
|
|
.include "../../security/libsodium/buildlink3.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|