GNU Lightning formula

GNU lightning is a library that generates assembly language code
at run-time; it is very fast, making it ideal for Just-In-Time
compilers, and it abstracts over the target CPU, as it exposes to
the clients a standardized RISC instruction set inspired by the
MIPS and SPARC chips.
master
David Höppner 2009-10-03 18:02:09 +02:00 committed by Max Howell
parent ccbe488bd0
commit 255319d7ba
1 changed files with 12 additions and 0 deletions

12
Formula/lightning.rb Normal file
View File

@ -0,0 +1,12 @@
require 'brewkit'
class Lightning <Formula
url 'http://ftp.gnu.org/gnu/lightning/lightning-1.2.tar.gz'
homepage 'http://www.gnu.org/software/lightning/'
md5 'dcd2c46ee4dd5d99edd9930022ad2153'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end