Ticket #14671: Portfile

File Portfile, 909 bytes (added by ryandesign (Ryan Carsten Schmidt), 16 years ago)

incomplete portfile

Line 
1# $Id: $
2
3PortSystem              1.0
4
5name                    oski
6version                 1.0.1h
7categories              devel
8maintainers             nomaintainer
9homepage                http://bebop.cs.berkeley.edu/oski/
10master_sites            sourceforge
11platforms               darwin
12use_bzip2               yes
13
14description \
15    foo
16
17long_description \
18    foo
19
20checksums \
21    md5 d50a138f66e92b770263dda7234670be \
22    sha1 dc8edbe1288f26a50c2a7960116c3ae7a8b35e17 \
23    rmd160 5fef952d604334194df467712a053f60969d7695
24
25depends_lib \
26    port:gcc42
27
28configure.compiler      macports-gcc-4.2
29configure.dir           ${workpath}/build-${version}
30configure.cmd           ../${worksrcdir}/configure
31#configure.args          --disable-static
32build.dir               ${configure.dir}
33build.target            all benchmarks
34
35test.run                yes
36
37pre-configure {
38    file mkdir ${configure.dir}
39}