5a7e826794
This is the initial commit of a formula for building the virtual machine for programming in the Neko programming language. This formula does not embed the "mod_neko" into the Apache web server, nor does it build the libraries to support MySQL 4 interaction, since those would necessarily require the installation of large amounts of software that a user might or might not have intended to install. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
323 B
Ruby
14 lines
323 B
Ruby
require 'formula'
|
|
|
|
class Neko <Formula
|
|
url 'http://nekovm.org/_media/neko-1.8.1.tar.gz'
|
|
homepage 'http://nekovm.org/'
|
|
md5 '0e2029465a49e1da929f0e254c017701'
|
|
|
|
depends_on 'bdw-gc'
|
|
|
|
def install
|
|
system "yes s | /usr/bin/gnumake -j1 MACOSX=1 INSTALL_PREFIX=#{prefix}"
|
|
prefix.install %w{bin libs src}
|
|
end
|
|
end
|