Formula for unshield.

unshield can extract InstallSheild cab files (which are different from
Microsoft cab files.)
This commit is contained in:
Adam Vandenberg 2010-03-15 11:11:29 -07:00
parent 4970f71c82
commit 669d855ade

12
Formula/unshield.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Unshield <Formula
url 'http://downloads.sourceforge.net/project/synce/Unshield/0.6/unshield-0.6.tar.gz'
homepage 'http://www.synce.org/oldwiki/index.php/Unshield'
md5 '31a829192a255160d1f71cda4c865c9c'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end