homebrew-core/Formula/boxes.rb
Baptiste Fontaine 54987cb05e boxes: modernize, test added
Closes Homebrew/homebrew#36157.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-23 18:05:00 +01:00

32 lines
896 B
Ruby

class Boxes < Formula
homepage "http://boxes.thomasjensen.com/"
url "https://github.com/ascii-boxes/boxes/archive/v1.1.2.tar.gz"
head "https://github.com/ascii-boxes/boxes.git"
sha1 "dcd466efe1878e4ee612a5eee8f4caf8baac7f31"
bottle do
sha1 "fc7adbf52e65497a6203df64bd46c5187b6202ca" => :yosemite
sha1 "692ee3b2ce7a9209fb2e5dea6b210e05d93a4ffd" => :mavericks
sha1 "7a53ae56f1202d8c908cbaa8caddf7f501b07158" => :mountain_lion
end
def install
ENV.m32
# distro uses /usr/share/boxes change to prefix
system "make",
"GLOBALCONF=#{share}/boxes-config",
"CC=#{ENV.cc}",
# Force 32 bit compile
"CFLAGS_ADDTL=-m32",
"LDFLAGS_ADDTL=-m32"
bin.install "src/boxes"
man1.install "doc/boxes.1"
share.install "boxes-config"
end
test do
assert_match "/* test brew */", pipe_output("#{bin}/boxes", "test brew")
end
end