blob: 1c445acd9903365c6aae4f4bf21e7ad0a5ebda67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Libsmi < Formula
homepage 'http://www.ibr.cs.tu-bs.de/projects/libsmi/'
url 'ftp://ftp.ibr.cs.tu-bs.de/pub/local/libsmi/libsmi-0.4.8.tar.gz'
sha1 '77c512ccbdd29667d152398b0dcde533aed57b49'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|