Ticket #2376: Portfile

File Portfile, 1.2 KB (added by reilles@…, 20 years ago)

the portfile

Line 
1
2PortSystem 1.0
3
4name            bigloo
5version         2.6e
6categories      lang
7maintainers     reilles@loria.fr
8description     Bigloo is a fast Scheme implementation.
9long_description         Bigloo is a Scheme implementation devoted to one goal:\
10    enabling Scheme based programming style where C(++) is usually required.\
11    Bigloo attempts to make Scheme practical by offering features usually\
12    presented by traditional programming languages but not offered by Scheme\
13    and functional programming. Bigloo compiles Scheme modules.\
14    It delivers small and fast stand alone binary executables.\
15    Bigloo enables full connections between Scheme and C programs,\
16    between Scheme and Java programs, and between Scheme and C# programs.
17
18platforms       darwin freebsd
19homepage        http://www-sop.inria.fr/mimosa/fp/Bigloo/
20master_sites    ftp://ftp-sop.inria.fr/mimosa/fp/Bigloo/
21distfiles ${name}${version}.tar.gz
22checksums       md5 896b94fd478f3e677c84afcdb985e86d
23
24worksrcdir  ${name}${version}
25
26configure.args  --mandir=${prefix}/share/man/man1 \
27    --infodir=${prefix}/share/info \
28    --docdir=${prefix}/share/doc/bigloo \
29                --lispdir=${prefix}/share/emacs/site-lisp/bigloo
30
31# build with make instead of make all
32build.target
33#destroot.args  prefix=${destroot}/${prefix}
34