aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorHenry Jekyll2010-10-18 00:37:48 -0500
committerAdam Vandenberg2010-10-18 07:16:19 -0700
commitc05fedb87602effeb9c990bd54ca7a1a06970027 (patch)
tree1a3e0ca8c1d8081b99839575266067d9c1044fea /Library/Formula
parent4b56fd80ed4217aff520408e11cebe5d7b3cd46f (diff)
downloadhomebrew-c05fedb87602effeb9c990bd54ca7a1a06970027.tar.bz2
New Formula: "neko"
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>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/neko.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/neko.rb b/Library/Formula/neko.rb
new file mode 100644
index 000000000..1fa820aa6
--- /dev/null
+++ b/Library/Formula/neko.rb
@@ -0,0 +1,14 @@
+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