homebrew-core/Formula/libp11.rb

32 lines
879 B
Ruby
Raw Normal View History

require 'formula'
class Libp11 < Formula
homepage 'https://github.com/OpenSC/libp11/wiki'
url 'https://downloads.sourceforge.net/project/opensc/libp11/libp11-0.2.8.tar.gz'
sha1 '2d1f6dc4200038f55a0cb7e22858f93e484b0724'
2014-07-03 21:00:25 +00:00
bottle do
cellar :any
2014-10-20 08:39:12 +00:00
revision 1
sha1 "fc0e0c6804dec4fceb529cefa3a8e756b3cc0633" => :yosemite
sha1 "3e955e07a8981bd543283ca58c9698e5cdf163d0" => :mavericks
sha1 "c6b65a79de96ef4185e1582a7b5fca98827efde1" => :mountain_lion
2014-07-03 21:00:25 +00:00
end
2013-09-22 01:47:14 +00:00
head do
url 'https://github.com/OpenSC/libp11.git'
2014-05-23 21:17:35 +00:00
depends_on "autoconf" => :build
depends_on "automake" => :build
2013-09-22 01:47:14 +00:00
end
2014-05-23 21:17:35 +00:00
depends_on "pkg-config" => :build
depends_on "libtool" => :run
def install
system "./bootstrap" if build.head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end