aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBrandon Bennett2012-10-30 13:02:54 -0600
committerAdam Vandenberg2012-10-31 09:34:23 -0700
commit1d0ec08a5369c49eb0c8f81fa25889ec4a4d9d30 (patch)
treee8b0892455dcff9450380c216fd56f0b8e59b72d /Library/Formula
parentd3e4b08b93f4d59d4c1ea87788d61eb4b0aceb1e (diff)
downloadhomebrew-1d0ec08a5369c49eb0c8f81fa25889ec4a4d9d30.tar.bz2
u-boot-tools 2012.10
Add in u-boot-tools which are used to create bootable kernel and ramdisk images for embeded platforms taht use the uboot bootloader such as sheevaplugs, android, etc. Closes #15764. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/u-boot-tools.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/u-boot-tools.rb b/Library/Formula/u-boot-tools.rb
new file mode 100644
index 000000000..fda95e906
--- /dev/null
+++ b/Library/Formula/u-boot-tools.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class UBootTools < Formula
+ homepage 'http://www.denx.de/wiki/U-Boot/'
+ url 'ftp://ftp.denx.de/pub/u-boot/u-boot-2012.10.tar.bz2'
+ sha1 '80bc5f6d3e518803c9320d480e693fe1cb76a494'
+
+ def install
+ system 'make tools'
+ bin.install 'tools/mkimage'
+ man1.install 'doc/mkimage.1'
+ end
+end