Changes between Version 1 and Version 2 of jazz/xxx2exe


Ignore:
Timestamp:
Jul 23, 2014, 4:19:50 PM (10 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/xxx2exe

    v1 v2  
    33== perl2exe ==
    44
    5  *
     5   * 有時候因為帳號密碼資訊是明碼寫在 Perl Script 裡面,所以必須把 Perl Script 打包成 Binary
     6     * [作法] 使用 [http://search.cpan.org/~autrijus/PAR-0.90/lib/PAR.pm Perl Archive Toolkit] ([http://packages.debian.org/etch/libpar-perl libpar-perl deb])
     7{{{
     8$ sudo apt-get install libpar-perl
     9$ pp -o packed.exe source.pl        # generate packed.exe
     10}}}
     11 * 其他商業的跨平台 Perl 編譯成執行檔的方法(compiler, binary)
     12  * http://www.indigostar.com/perl2exe.php
     13  * http://docs.activestate.com/pdk/6.0/PerlApp.html
    614
    715== bash2exe ==