Last change
on this file since 22554 was
22554,
checked in by mww@…, 13 years ago
|
add livecheck (regex)
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
1.3 KB
|
Line | |
---|
1 | # $Id: Portfile 22554 2007-03-04 21:24:10Z mww@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name sqlite3 |
---|
6 | version 3.3.13 |
---|
7 | categories databases |
---|
8 | platforms darwin |
---|
9 | maintainers mww@macports.org |
---|
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} |
---|
22 | checksums sha1 405d3f042d64d9ecbb42fff6d4c0dae4a1eeeda2 |
---|
23 | patchfiles patch-Makefile.in |
---|
24 | |
---|
25 | depends_lib port:readline |
---|
26 | |
---|
27 | configure.args --enable-threadsafe --disable-tcl |
---|
28 | |
---|
29 | build.type gnu |
---|
30 | build.env CFLAGS="-I${prefix}/include/ -DSQLITE_ENABLE_LOCKING_STYLE=1" \ |
---|
31 | LDFLAGS="-L${prefix}/lib" |
---|
32 | |
---|
33 | test.run yes |
---|
34 | test.target test |
---|
35 | |
---|
36 | livecheck.check regex |
---|
37 | livecheck.url http://www.sqlite.org/download.html |
---|
38 | livecheck.regex sqlite-(\[0-9\\.\]+)\\. |
---|
39 | |
---|
40 | post-destroot { |
---|
41 | xinstall -m 644 ${worksrcpath}/${name}.1 ${destroot}${prefix}/share/man/man1 |
---|
42 | } |
---|
43 | |
---|
44 | platform darwin 8 { |
---|
45 | configure.env-append CC=/usr/bin/gcc-4.0 CPP=/usr/bin/cpp-4.0 CXX=/usr/bin/g++-4.0 |
---|
46 | } |
---|
47 | |
---|
Note: See
TracBrowser
for help on using the repository browser.