homebrew-core/Formula/libtermkey.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

26 lines
797 B
Ruby

class Libtermkey < Formula
desc "Library for processing keyboard entry from the terminal"
homepage "http://www.leonerd.org.uk/code/libtermkey/"
url "http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.17.tar.gz"
sha256 "68949364ed5eaad857b3dea10071cde74b00b9f236dfbb702169f246c3cef389"
bottle do
cellar :any
revision 1
sha1 "0335d158aa03bd7ad2d75b9b902f8ae4ffc2c864" => :yosemite
sha1 "29ba1ee30a2462b3eff036c2cdd32fbdcf349571" => :mavericks
sha1 "c77ce1bf195352319b3f09da116a67922d4b4265" => :mountain_lion
end
option :universal
depends_on "pkg-config" => :build
depends_on "libtool" => :build
def install
ENV.universal_binary if build.universal?
system "make", "PREFIX=#{prefix}"
system "make", "install", "PREFIX=#{prefix}"
end
end