homebrew-core/Formula/rkflashtool.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

38 lines
1.3 KiB
Ruby

class Rkflashtool < Formula
desc "Tools for flashing Rockchip devices"
homepage "https://sourceforge.net/projects/rkflashtool/"
url "https://downloads.sourceforge.net/project/rkflashtool/rkflashtool-5.1/rkflashtool-5.1-src.tar.bz2"
sha256 "2cad0e0c116357b721a6ac98fb3a91b43fe0269cda66e75eda4adec3330b7735"
head "git://git.code.sf.net/p/rkflashtool/Git"
bottle do
cellar :any
sha1 "a51793a60e27ea73735ccf83a6386f809c34faf2" => :mavericks
sha1 "cd08e68dc4fdb0f56fb10b77f78ca13476ac8a63" => :mountain_lion
sha1 "4b7f416b735845a43c5a0ed2086d07f2b1a751b1" => :lion
end
depends_on "libusb"
# Add file 'version.h' that has been forgotten in the tarball
resource "version" do
url "https://downloads.sourceforge.net/project/rkflashtool/rkflashtool-5.1/version.h"
sha256 "b7bd8e3c66170d5f6e6a68c5add677ad365e37b4121251de87ad29e7fdf06cd6"
end
def install
resource("version").stage { buildpath.install "version.h" } if build.stable?
system "make"
# No 'install' method found in Makefile
bin.install "rkflashtool", "rkcrc", "rkmisc", "rkpad",
"rkparameters", "rkparametersblock", "rkunpack", "rkunsign"
end
test do
(testpath/"input.file").write "ABCD"
system bin/"rkcrc", "input.file", "output.file"
assert_equal "ABCD\264\366\a\t", `cat output.file`
end
end