Ticket #21301: Portfile

File Portfile, 1.3 KB (added by mail@…, 15 years ago)

Portfile

Line 
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
4PortSystem          1.0
5
6name                sqlitewrapped
7version             1.3.1
8categories          databases devel
9platforms           darwin
10
11maintainers         uwe-arzt.de:mail
12
13description         a C++ wrapper for the Sqlite database C API
14long_description    This is a C++ wrapper for the Sqlite database \
15                    C application programming interface. The code works \
16                    for linux/unix, as well as win32. This library \
17                    supports version 3 of the sqlite database. From \
18                    version 1.2 the connection pool can be made threadsafe.
19
20homepage            http://www.alhem.net/project/sqlite/index.html
21
22master_sites        http://www.alhem.net/project/sqlite
23checksums           md5 a6709476d04dd89acb2b16332e4fdf37 \
24                    sha1 d95614429d2397477445013ed3c0b3e1947ee883
25
26# build without the SysLog feature at the moment, if there are requests add variant
27patchfiles          patch-Makefile.diff
28
29depends_build       port:sqlite3
30
31use_configure       no
32
33destroot {
34  xinstall libsqlitewrapped.a ${destroot}${prefix}/lib
35  xinstall libsqlitewrapped.h ${destroot}${prefix}/include
36}
37