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

class Libp11 < Formula
  homepage 'https://github.com/OpenSC/libp11/wiki'
  url 'http://sourceforge.net/projects/opensc/files/libp11/libp11-0.2.8.tar.gz'
  sha1 '2d1f6dc4200038f55a0cb7e22858f93e484b0724'

  head 'https://github.com/OpenSC/libp11.git'

  depends_on 'pkg-config' => :build
  depends_on :libltdl

  depends_on :automake if build.head?

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