blob: 429331adc1c12caef72811547634d6e9272fbac0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | require 'formula'
class Libopennet < Formula
  homepage 'http://www.rkeene.org/oss/libopennet'
  url 'http://www.rkeene.org/files/oss/libopennet/libopennet-0.9.9.tar.gz'
  sha1 'd15c698498401ec6036646eaf19914117d6f5c56'
  bottle do
    cellar :any
    sha1 "63dac8f3ec1c97043aac3b46cf004bb5c70f688c" => :yosemite
    sha1 "36361dd6ba28e2ed7e9aa7b5f9274998d83697a0" => :mavericks
    sha1 "0f1653162c70f915023a63adc0f0e345d15d0a61" => :mountain_lion
  end
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make"
    system "make install"
  end
end
 |