aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Albert2011-08-29 19:54:40 -0400
committerCharlie Sharpsteen2011-08-30 17:35:30 -0700
commitc67279642ebf3f795206fd9aa48139bf1a7a52a8 (patch)
treea9f42c1b34e13d9dea2b4057979709e44310f6f8 /Library/Formula
parent5fe6ab8da140e5a4b12d80766c9cb6124b9c81f9 (diff)
downloadhomebrew-c67279642ebf3f795206fd9aa48139bf1a7a52a8.tar.bz2
added unifdef formula
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/unifdef.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/unifdef.rb b/Library/Formula/unifdef.rb
new file mode 100644
index 000000000..0e855e0e0
--- /dev/null
+++ b/Library/Formula/unifdef.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Unifdef < Formula
+ url 'http://dotat.at/prog/unifdef/unifdef-2.6.tar.gz'
+ homepage 'http://dotat.at/prog/unifdef/'
+ md5 '18b832baea2c7b6b00bd7d4f3db38f62'
+
+ def install
+ system "make prefix=#{prefix} install"
+ end
+
+ def test
+ system "unifdef -V"
+ end
+end