| 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
|---|
| 2 | # $Id$ |
|---|
| 3 | |
|---|
| 4 | PortSystem 1.0 |
|---|
| 5 | |
|---|
| 6 | name lmdbxx |
|---|
| 7 | version 0.9.14.0 |
|---|
| 8 | categories databases |
|---|
| 9 | platforms darwin |
|---|
| 10 | supported_archs noarch |
|---|
| 11 | license public-domain |
|---|
| 12 | maintainers bendiken.net:arto |
|---|
| 13 | |
|---|
| 14 | description C++11 wrapper for the LMDB embedded B+ tree database library. |
|---|
| 15 | |
|---|
| 16 | long_description This is a comprehensive C++ wrapper for the LMDB embedded \ |
|---|
| 17 | database library, offering both an error-checked procedural \ |
|---|
| 18 | interface and an object-oriented resource interface with RAII \ |
|---|
| 19 | semantics. |
|---|
| 20 | |
|---|
| 21 | homepage http://lmdbxx.sourceforge.net/ |
|---|
| 22 | |
|---|
| 23 | master_sites sourceforge:project/${name}/${version}/ |
|---|
| 24 | |
|---|
| 25 | use_xz yes |
|---|
| 26 | checksums rmd160 c5cc24adacd88cd080159b3da4b6599025dd6911 \ |
|---|
| 27 | sha256 29caf35dcd6962909be5a2d8147f85e65fe098030992f1ecdd902633dbcdcbde |
|---|
| 28 | |
|---|
| 29 | depends_lib port:lmdb |
|---|
| 30 | |
|---|
| 31 | use_configure no |
|---|
| 32 | build {} |
|---|
| 33 | |
|---|
| 34 | destroot.args-append PREFIX=${prefix} |
|---|