2010-07-10 20:32:50 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class NsisSupport < Formula
|
2010-07-10 20:32:50 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46.zip'
|
|
|
|
md5 'd7e43beabc017a7d892a3d6663e988d4'
|
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Makensis < Formula
|
2010-07-10 20:32:50 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-src.tar.bz2'
|
|
|
|
homepage 'http://nsis.sourceforge.net/'
|
|
|
|
md5 '61c2e81739436b06d7cf7bcce1d533ac'
|
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'scons' => :build
|
2010-07-10 20:32:50 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "scons makensis"
|
|
|
|
bin.install "build/release/makensis/makensis"
|
|
|
|
NsisSupport.new.brew { (share+"nsis").install Dir['*'] }
|
|
|
|
end
|
|
|
|
end
|