diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2017-04-25 12:26:34 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2017-04-25 12:26:34 +0000 |
commit | 87bab43e2879c714c40b5aee55515c78c5855069 (patch) | |
tree | 9a0437f975e6b3bb3b896e43cc48a6b04e5f2e1d /databases/lmdb/Makefile | |
parent | 67dab3e66ff9cf90ea16b59e3a7ae3e0d5605453 (diff) |
Notes
Diffstat (limited to 'databases/lmdb/Makefile')
-rw-r--r-- | databases/lmdb/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/databases/lmdb/Makefile b/databases/lmdb/Makefile index 86f0146a50c1..0947a84fa94c 100644 --- a/databases/lmdb/Makefile +++ b/databases/lmdb/Makefile @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= lmdb -PORTVERSION= 0.9.18 -PORTEPOCH= 1 +PORTVERSION= 0.9.19 DISTVERSIONPREFIX= ${PORTNAME:tu}_ +PORTEPOCH= 1 CATEGORIES= databases MAINTAINER= delphij@FreeBSD.org @@ -27,7 +27,13 @@ USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:tu} +TEST_TARGET= do-test + post-install: ${LN} -sf liblmdb.so.0 ${STAGEDIR}${PREFIX}/lib/liblmdb.so +do-test: + ${MKDIR} ${WRKSRC}/testdb + cd ${WRKSRC} && ./mtest* + .include <bsd.port.mk> |