homebrew-core/Formula/ii.rb
2018-05-28 21:42:32 -07:00

23 lines
830 B
Ruby

class Ii < Formula
desc "Minimalist IRC client"
homepage "https://tools.suckless.org/ii/"
url "https://dl.suckless.org/tools/ii-1.8.tar.gz"
sha256 "b9d9e1eae25e63071960e921af8b217ab1abe64210bd290994aca178a8dc68d2"
head "https://git.suckless.org/ii", :using => :git
bottle do
cellar :any_skip_relocation
sha256 "cb33673d9ff4f1ae5df30e60ece783e6c7e2024f2722fe96dd60ab9504b124e5" => :high_sierra
sha256 "1315c3181d0c2320d05927e84f84a8b1a0de21d9f53e448993e95fb00a1489a0" => :sierra
sha256 "7f1cb092b6940dc4d9b1e1e47b78165c6f37c0dc322dc0bfd5053afcb42e3fb6" => :el_capitan
end
def install
inreplace "config.mk" do |s|
s.gsub! "/usr/local", prefix
s.gsub! "cc", ENV.cc
end
# pass SRC to avoid it trying to build its own strlcpy
system "make", "install", "SRC=ii.c"
end
end