homebrew-core/Formula/popt.rb

23 lines
629 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Popt < Formula
2010-05-08 12:10:20 +00:00
homepage 'http://rpm5.org'
2013-01-28 05:45:32 +00:00
url 'http://rpm5.org/files/popt/popt-1.16.tar.gz'
sha1 'cfe94a15a2404db85858a81ff8de27c8ff3e235e'
2014-02-22 19:24:49 +00:00
bottle do
sha1 "ab6a9ee02a3e472537170cca2062a7714d1d896d" => :mavericks
sha1 "ee206729448db1e914db7d2722a0942e4d08a1f4" => :mountain_lion
sha1 "1f5fdb9324fa0ef2c590e33d119af66eb35d8ba8" => :lion
end
option :universal
def install
ENV.universal_binary if build.universal?
2013-01-28 05:45:32 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end