2010-04-07 20:10:09 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libsmi < Formula
|
2010-04-07 20:10:09 +00:00
|
|
|
homepage 'http://www.ibr.cs.tu-bs.de/projects/libsmi/'
|
2013-12-14 16:18:55 +00:00
|
|
|
url 'https://www.ibr.cs.tu-bs.de/projects/libsmi/download/libsmi-0.4.8.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '77c512ccbdd29667d152398b0dcde533aed57b49'
|
2010-04-07 20:10:09 +00:00
|
|
|
|
2014-07-03 21:00:26 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "85840d6b3e66ecc3ff3c4044942a09cb4cd7bc12" => :mavericks
|
|
|
|
sha1 "b59655ea31657172d78cfe736610ca510f788822" => :mountain_lion
|
|
|
|
sha1 "7e2434d1b0ae815f91c98d09897d71d0a8197a46" => :lion
|
|
|
|
end
|
|
|
|
|
2010-04-07 20:10:09 +00:00
|
|
|
def install
|
2013-01-29 05:21:31 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-04-07 20:10:09 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|