Ticket #7792: Portfile

File Portfile, 891 bytes (added by yuhei@…, 18 years ago)

Portfile

Line 
1# $$
2
3PortSystem 1.0
4name            gauche-c-wrapper
5version         0.2.0
6categories      lang scheme
7maintainers     yuhei@pop21.odn.ne.jp
8description     c-wrapper is a FFI (Foreign Function Interface) for Gauche.
9long_description        c-wrapper is a FFI (Foreign Function Interface) for Gauche.
10homepage        http://homepage.mac.com/naoki.koguro/prog/c-wrapper/index.html
11master_sites    http://homepage.mac.com/naoki.koguro/prog/c-wrapper/
12distname        c-wrapper-$version
13extract.suffix  .tgz
14checksums       md5 547aee7ecfad16193c8c310790fe8b4d
15depends_build   bin:gosh:gauche
16
17patchfiles      src_Makefile.in.diff lib_Makefile.in.diff
18
19post-destroot {
20    file mkdir ${destroot}${prefix}/share/doc/gauche-c-wrapper
21    cd ${destroot}${prefix}/share/doc/gauche-c-wrapper
22    file copy ${workpath}/${worksrcdir}/doc/API.ja_JP.UTF-8 .
23    file copy ${workpath}/${worksrcdir}/doc/API.txt .
24    file copy ${workpath}/${worksrcdir}/examples .
25}
26