Ticket #4771: Portfile.2

File Portfile.2, 859 bytes (added by cssdev@…, 19 years ago)

mdbconv Portfile with correct description

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