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>
master
Joshua Priddle 2010-09-08 23:08:48 -04:00 committed by Adam Vandenberg
parent b0adbd5db5
commit ece2641dd5
1 changed files with 13 additions and 0 deletions

13
Formula/uggconv.rb Normal file
View File

@ -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