Changes: https://github.com/rogerbinns/apsw/releases https://rogerbinns.github.io/apsw/changes.html
30 lines
628 B
Makefile
30 lines
628 B
Makefile
# Created by: Rusty Nejdl
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= apsw
|
|
PORTVERSION= 3.25.2
|
|
DISTVERSIONSUFFIX= -r1
|
|
CATEGORIES= databases python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Another Python SQLite Wrapper
|
|
|
|
LICENSE= ZLIB
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= sqlite3>=${PORTVERSION:R}:databases/sqlite3
|
|
|
|
USES= localbase python sqlite:3
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
GH_ACCOUNT= rogerbinns
|
|
USE_GITHUB= yes
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/apsw.so
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/ && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|