5 | | name sqlite3 |
6 | | version 3.6.23.1 |
7 | | categories databases |
8 | | platforms darwin |
9 | | maintainers mww openmaintainer |
10 | | description an embedded SQL database engine |
11 | | long_description SQLite3 is an SQL database engine in a C library. \ |
12 | | Programs that link the SQLite3 library can have SQL \ |
13 | | database access without running a separate RDBMS \ |
14 | | process. The distribution comes with a standalone \ |
15 | | command-line access program (sqlite3) that can be used \ |
16 | | to administer an SQLite3 database and which serves as \ |
17 | | an example of how to use the SQLite3 library. |
18 | | |
19 | | homepage http://www.sqlite.org/ |
20 | | master_sites ${homepage} |
21 | | distname sqlite-${version} |
| 6 | name sqlite3 |
| 7 | version 3.6.23.1 |
| 8 | categories databases |
| 9 | platforms darwin |
| 10 | maintainers mww ouarz.net:franck.cassedanne openmaintainer |
| 11 | license public domain |
| 12 | description an embedded SQL database engine |
| 13 | |
| 14 | long_description SQLite3 is an SQL database engine in a C library. \ |
| 15 | Programs that link the SQLite3 library can have SQL \ |
| 16 | database access without running a separate RDBMS \ |
| 17 | process. The distribution comes with a standalone \ |
| 18 | command-line access program (sqlite3) that can be used \ |
| 19 | to administer an SQLite3 database and which serves as \ |
| 20 | an example of how to use the SQLite3 library. |
| 21 | |
| 22 | homepage http://www.sqlite.org/ |
| 23 | master_sites ${homepage} |
| 24 | distname sqlite-${version} |
| 58 | |
| 59 | variant fts3 description {Add the FTS3 extension for full text search} { |
| 60 | configure.cppflags-append -DSQLITE_ENABLE_FTS3 -SQLITE_ENABLE_FTS3_PARENTHESIS |
| 61 | } |
| 62 | |
| 63 | variant rtree description {Add the R*Tree extension for spatial data structure} { |
| 64 | configure.cppflags-append -DSQLITE_ENABLE_RTREE=1 |
| 65 | } |
| 66 | |
| 67 | variant soundex description {Enables the soundex() function} { |
| 68 | configure.cppflags-append -DSQLITE_SOUNDEX=1 |
| 69 | } |
| 70 | |
| 71 | variant icu description {Add the International Components for Unicode (ICU) extension} { |
| 72 | depends_lib-append port:icu |
| 73 | configure.ldflags-append [exec ${prefix}/bin/icu-config --ldflags] |
| 74 | configure.cppflags-append -DSQLITE_ENABLE_ICU |
| 75 | } |
| 76 | No newline at end of file |