1 | # $Id: Portfile 2 2013-06-06 13:36:49Z emotiongraphics.jp:rino $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name xyzsh |
---|
6 | categories shells |
---|
7 | version 1.4.3 |
---|
8 | revision 0 |
---|
9 | description xyzsh - An interactive shell |
---|
10 | long_description An interactive shell features object oriented scripting with garbage collection. |
---|
11 | homepage http://sourceforge.jp/projects/xyzsh/ |
---|
12 | |
---|
13 | master_sites sourceforge_jp:${name}/58940/ |
---|
14 | checksums md5 c3e3166fd068c20881f4f39c190069f9 |
---|
15 | extract.suffix .tgz |
---|
16 | |
---|
17 | platforms darwin |
---|
18 | license MIT |
---|
19 | maintainers emotiongraphics.jp:rino |
---|
20 | |
---|
21 | depends_build port:libc-headers \ |
---|
22 | port:libm-headers \ |
---|
23 | port:ncurses \ |
---|
24 | port:oniguruma5 |
---|
25 | |
---|
26 | depends_lib port:libiconv |
---|
27 | |
---|
28 | configure.args --prefix=/opt/local \ |
---|
29 | --with-optimize |
---|
30 | |
---|
31 | variant static description {Create static library} { |
---|
32 | configure.args-append --with-static |
---|
33 | } |
---|
34 | |
---|
35 | post-destroot { |
---|
36 | system "install_name_tool -change libxyzsh.1.9.0.dylib ${prefix}/lib/libxyzsh.1.9.0.dylib ${destroot}${prefix}/bin/xyzsh" |
---|
37 | } |
---|