2012-11-27 22:45:33 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Unar < Formula
|
|
|
|
homepage 'http://unarchiver.c3.cx/commandline'
|
2013-10-20 22:35:24 +00:00
|
|
|
url 'http://theunarchiver.googlecode.com/files/unar1.8.1_src.zip'
|
|
|
|
version '1.8.1'
|
|
|
|
sha1 'fe052cd7042651cccc7ba0e9c4d6d7dba5102fd4'
|
2012-11-27 22:45:33 +00:00
|
|
|
|
|
|
|
head 'https://code.google.com/p/theunarchiver/' , :using => :hg
|
|
|
|
|
|
|
|
depends_on :xcode
|
|
|
|
|
2013-10-20 22:48:48 +00:00
|
|
|
bottle do
|
2013-12-05 05:23:53 +00:00
|
|
|
cellar :any
|
|
|
|
revision 2
|
|
|
|
sha1 'cb7c91f0aab580a0d4edb2db4934b7879cb468e3' => :mavericks
|
|
|
|
sha1 '35f2b3655adfed8daed2eee14f757c0ada553c00' => :mountain_lion
|
|
|
|
sha1 'a6254624528195ab69b6adf3b649571814b4d638' => :lion
|
2013-10-20 22:48:48 +00:00
|
|
|
end
|
|
|
|
|
2012-11-27 22:45:33 +00:00
|
|
|
def install
|
|
|
|
# Build XADMaster.framework, unar and lsar
|
|
|
|
system "xcodebuild -project ./XADMaster/XADMaster.xcodeproj -target XADMaster SYMROOT=../ -configuration Release"
|
|
|
|
system "xcodebuild -project ./XADMaster/XADMaster.xcodeproj -target unar SYMROOT=../ -configuration Release"
|
|
|
|
system "xcodebuild -project ./XADMaster/XADMaster.xcodeproj -target lsar SYMROOT=../ -configuration Release"
|
|
|
|
|
|
|
|
bin.install "./Release/unar", "./Release/lsar"
|
|
|
|
|
2013-05-03 16:21:08 +00:00
|
|
|
lib.install "./Release/libXADMaster.a"
|
2013-05-03 16:28:45 +00:00
|
|
|
frameworks.install "./Release/XADMaster.framework"
|
|
|
|
(include/'libXADMaster').install_symlink Dir["#{frameworks}/XADMaster.framework/Headers/*"]
|
2012-11-27 22:45:33 +00:00
|
|
|
|
|
|
|
cd "./Extra" do
|
|
|
|
man1.install "lsar.1", "unar.1"
|
|
|
|
bash_completion.install "unar.bash_completion", "lsar.bash_completion"
|
|
|
|
end
|
|
|
|
end
|
2013-07-14 12:44:04 +00:00
|
|
|
|
|
|
|
def test
|
|
|
|
system bin/'unar', '--version'
|
|
|
|
system bin/'lsar', '--version'
|
|
|
|
end
|
2012-11-27 22:45:33 +00:00
|
|
|
end
|