homebrew-core/Formula/u-boot-tools.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
703 B
Ruby

class UBootTools < Formula
desc "Universal boot loader"
homepage "http://www.denx.de/wiki/U-Boot/"
url "ftp://ftp.denx.de/pub/u-boot/u-boot-2015.01.tar.bz2"
sha256 "383051a656ebe11757b17d38a3326387e4a1b0949ca8a9e8ee506bf71dac9fde"
bottle do
cellar :any
sha1 "cc0677b54979ae9ae04a0bae5c7124c05e269a97" => :yosemite
sha1 "081589c5dadc378d31accd101be6486023de7fe2" => :mavericks
sha1 "0acb015f103446d432d69db39b0a14b0abb9b130" => :mountain_lion
end
depends_on "openssl"
def install
system "make", "sandbox_defconfig"
system "make", "tools"
bin.install "tools/mkimage"
man1.install "doc/mkimage.1"
end
test do
system bin/"mkimage", "-V"
end
end