Created
June 6, 2012 16:21
-
-
Save choplin/2883027 to your computer and use it in GitHub Desktop.
homebrew formula for nekovm, which install binary file downloaded from official page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Neko < Formula | |
url 'http://nekovm.org/_media/neko-1.8.2-osx.tar.gz' | |
homepage 'http://nekovm.org/' | |
md5 'd801e1e4bedd5c18fef2617ff5076253' | |
def install | |
prefix.install %w{include} | |
bin.install %w{neko nekoml nekotools nekoc} | |
lib.install %w{mod_neko.ndll mod_tora.ndll mysql.ndll sqlite.ndll zlib.ndll libneko.dylib mod_neko2.ndll mod_tora2.ndll mysql5.ndll nekoml.std regexp.ndll std.ndll ui.ndll} | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment