aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libestr.rb
blob: e0a12206285d3901700b8682e3f94f8d4a27af38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'formula'

class Libestr < Formula
  homepage 'http://libestr.adiscon.com'
  url "http://libestr.adiscon.com/files/download/libestr-0.1.9.tar.gz"
  sha1 "55fb6ad347f987c45d98b422b0436d6ae50d86aa"

  bottle do
    cellar :any
    sha1 "bc0dc2d4fc17dce269003705c01cda62482b58a3" => :mavericks
    sha1 "e232f60fdda3548f5f39b48221a018b363554e8c" => :mountain_lion
    sha1 "e955560fd837eacbc843c631a1e5aaa432802942" => :lion
  end

  depends_on 'pkg-config' => :build

  option :universal

  def install
    ENV.universal_binary if build.universal?
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end