31 lines
987 B
Ruby
31 lines
987 B
Ruby
class Abduco < Formula
|
|
homepage "http://www.brain-dump.org/projects/abduco"
|
|
url "http://www.brain-dump.org/projects/abduco/abduco-0.3.tar.gz"
|
|
sha1 "175b2c0eaf2a8b7fb044f1454d018dac4ec31293"
|
|
head "git://repo.or.cz/abduco.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "2ac0afd13b4465b28e0688809131a5ff0055f2de" => :yosemite
|
|
sha1 "8653786cb86fbfb36fb03af3451e19bb55792cbf" => :mavericks
|
|
sha1 "bd2982595586f67eb747bc287be03fcd5418f4e6" => :mountain_lion
|
|
end
|
|
|
|
# upstream fix for create-session: Invalid argument
|
|
# safe to remove in versions > 0.3
|
|
patch do
|
|
url "http://repo.or.cz/w/abduco.git/patch/91b733"
|
|
sha1 "4370ceb4c304ecd916e69c6c7c876666807f6fb8"
|
|
end
|
|
|
|
def install
|
|
ENV.append_to_cflags "-D_DARWIN_C_SOURCE"
|
|
system "make", "PREFIX=#{prefix}", "install"
|
|
end
|
|
|
|
test do
|
|
result = shell_output("#{bin}/abduco -v")
|
|
result.force_encoding("UTF-8") if result.respond_to?(:force_encoding)
|
|
assert_match /^abduco-#{version}/, result
|
|
end
|
|
end
|