1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name mdbconv |
---|
5 | version 1.6 |
---|
6 | description converts between CSV and MobileDB databases |
---|
7 | categories palm databases |
---|
8 | long_description This command line program converts between comma- \ |
---|
9 | separated values (CSV) text files and MobileDB \ |
---|
10 | database files for use on PalmOS handhelds. |
---|
11 | |
---|
12 | homepage http://www.mobiledb.com/ |
---|
13 | platforms darwin |
---|
14 | maintainers cssdev@mac.com |
---|
15 | master_sites http://www.handmark.com/downloads/ |
---|
16 | distname ${name}freebsd3x |
---|
17 | checksums md5 092f0aa1ec1445c91333f316cc2ed513 |
---|
18 | use_configure no |
---|
19 | |
---|
20 | worksrcdir ${name}-${version} |
---|
21 | pre-extract { xinstall -d ${worksrcpath} } |
---|
22 | |
---|
23 | extract.post_args | tar -xf - -C ${worksrcpath} |
---|
24 | post-extract { file delete ${worksrcpath}/mdbconv } |
---|
25 | |
---|
26 | build.cmd gcc |
---|
27 | build.args mdbconv.c |
---|
28 | build.target -o ${name} |
---|
29 | |
---|
30 | destroot { |
---|
31 | xinstall -m 755 -s ${worksrcpath}/${name} ${destroot}${prefix}/bin |
---|
32 | } |
---|