added unifdef formula

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
master
David Albert 2011-08-29 19:54:40 -04:00 committed by Charlie Sharpsteen
parent e5e60a55a4
commit 953c33cbd0
1 changed files with 15 additions and 0 deletions

15
Formula/unifdef.rb Normal file
View File

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