blob: aa9958d1d3473ee6d6a3bcdba34868e196e11b88 (
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://downloads.sourceforge.net/project/opensc/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
|