63f2a8d5a0
APSW provides an SQLite 3 wrapper that provides the thinnest layer over the SQLite database library possible. Everything you can do from the SQLite C API, you can do from Python. Although APSW looks vaguely similar to the PEP 249 (DBAPI), it is not compliant with that API because instead it works the way SQLite 3 does.
21 lines
604 B
Makefile
21 lines
604 B
Makefile
# $NetBSD: Makefile,v 1.1 2014/04/16 17:15:24 wiz Exp $
|
|
|
|
DISTNAME= apsw-3.8.4.2-r1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/-r/pl/}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= https://github.com/rogerbinns/apsw/releases/download/${DISTNAME:C/^[^-]*-//1}/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= rhialto@falu.nl
|
|
HOMEPAGE= http://rogerbinns.github.io/apsw/
|
|
COMMENT= Python wrapper for SQLite
|
|
LICENSE= zlib
|
|
|
|
USE_LANGUAGES= c
|
|
|
|
EGG_NAME= ${DISTNAME:S/-r/_r/}
|
|
|
|
BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.8.3
|
|
.include "../../databases/sqlite3/buildlink3.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|