aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Priddle2010-09-08 23:08:48 -0400
committerAdam Vandenberg2010-09-08 20:46:11 -0700
commit23a3d05dedcdf4da839d82fb22aeb4718e4fbcd0 (patch)
tree3d53f94a3e143b9b6de84d7e92536c0ba02d6ee0
parentef03582ecee071e19b11b53c0e5ffa6d92fb9e9b (diff)
downloadhomebrew-23a3d05dedcdf4da839d82fb22aeb4718e4fbcd0.tar.bz2
New formula: UGGCONV (Universal Game Genie Code Convertor)
The uggconv utility converts between the codes used by the various incarnations of the Galoob Game Genie and address:value pairs (with check bytes where appropriate). It is universal in the sense that all existing Game Genie systems are supported: Game Boy, Game Gear, Megadrive (Genesis), NES, and SNES. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/uggconv.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/uggconv.rb b/Library/Formula/uggconv.rb
new file mode 100644
index 000000000..43f7fbbed
--- /dev/null
+++ b/Library/Formula/uggconv.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Uggconv < Formula
+ url 'http://wyrmcorp.com/software/uggconv/uggconv-1.0.tar.gz'
+ homepage 'http://wyrmcorp.com/software/uggconv/index.shtml'
+ md5 '97b479b2fb761c9dbd7718b0ec71d068'
+
+ def install
+ system "make"
+ bin.install 'uggconv'
+ man1.install 'uggconv.1'
+ end
+end