2009-11-12 18:31:36 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ii < Formula
|
2009-11-12 18:31:36 +00:00
|
|
|
homepage 'http://tools.suckless.org/ii'
|
2014-06-22 07:15:50 +00:00
|
|
|
url 'http://dl.suckless.org/tools/ii-1.7.tar.gz'
|
|
|
|
sha1 '499f40b8d9cac6d2de0c27b1db087de6b819e279'
|
2009-11-12 18:31:36 +00:00
|
|
|
|
2014-06-22 07:20:47 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "de99aa533e552f3d95d3139c0a933b5cdf2eb207" => :mavericks
|
|
|
|
sha1 "1a22188f373828e5738fcd1dfc981402384321df" => :mountain_lion
|
|
|
|
sha1 "9f66c3d6465cb6b2c20a913926398b84ba4d2bb2" => :lion
|
|
|
|
end
|
|
|
|
|
2014-06-22 07:13:47 +00:00
|
|
|
head 'http://git.suckless.org/ii', :using => :git
|
|
|
|
|
2009-11-12 18:31:36 +00:00
|
|
|
def install
|
2012-06-16 11:11:02 +00:00
|
|
|
inreplace 'config.mk' do |s|
|
|
|
|
s.gsub! '/usr/local', prefix
|
|
|
|
s.gsub! 'cc', ENV.cc
|
|
|
|
end
|
2009-11-12 18:31:36 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|