2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-09 16:07:53 +00:00
|
|
|
|
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'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'cfe94a15a2404db85858a81ff8de27c8ff3e235e'
|
2009-09-09 16:07:53 +00:00
|
|
|
|
2014-02-22 19:24:49 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "ab6a9ee02a3e472537170cca2062a7714d1d896d" => :mavericks
|
|
|
|
sha1 "ee206729448db1e914db7d2722a0942e4d08a1f4" => :mountain_lion
|
|
|
|
sha1 "1f5fdb9324fa0ef2c590e33d119af66eb35d8ba8" => :lion
|
|
|
|
end
|
|
|
|
|
2013-08-06 14:33:41 +00:00
|
|
|
option :universal
|
|
|
|
|
2009-09-09 16:07:53 +00:00
|
|
|
def install
|
2013-08-06 14:33:41 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2013-01-28 05:45:32 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-09-09 16:07:53 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|