Skip to content

Instantly share code, notes, and snippets.

@choplin
Created June 6, 2012 16:21
Show Gist options
  • Save choplin/2883027 to your computer and use it in GitHub Desktop.
Save choplin/2883027 to your computer and use it in GitHub Desktop.
homebrew formula for nekovm, which install binary file downloaded from official page
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