nesc 1.3.2
nesC is a programming language for deeply networked systems Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
9a15207fbe
commit
af56345b5d
1 changed files with 14 additions and 0 deletions
14
Formula/nesc.rb
Normal file
14
Formula/nesc.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
require 'formula'
|
||||
|
||||
class Nesc < Formula
|
||||
url 'http://downloads.sourceforge.net/project/nescc/nescc/v1.3.2/nesc-1.3.2.tar.gz'
|
||||
homepage 'http://nescc.sourceforge.net/'
|
||||
md5 '9daf68f3d7f4a188d4de9d50c8bc3188'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue