797fe580dc
Added test Closes Homebrew/homebrew#21209. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
38 lines
1.3 KiB
Ruby
38 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Unar < Formula
|
|
homepage 'http://unarchiver.c3.cx/commandline'
|
|
url 'http://theunarchiver.googlecode.com/files/unar1.7_src.zip'
|
|
version '1.7'
|
|
sha1 'e34760d3806fbf3f1358485ccadf51bd5c7f81be'
|
|
|
|
head 'https://code.google.com/p/theunarchiver/' , :using => :hg
|
|
|
|
depends_on :xcode
|
|
|
|
def install
|
|
# Tarball has extra folder over hg checkout
|
|
cd "./The Unarchiver" unless build.head?
|
|
|
|
# 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"
|
|
|
|
lib.install "./Release/libXADMaster.a"
|
|
frameworks.install "./Release/XADMaster.framework"
|
|
(include/'libXADMaster').install_symlink Dir["#{frameworks}/XADMaster.framework/Headers/*"]
|
|
|
|
cd "./Extra" do
|
|
man1.install "lsar.1", "unar.1"
|
|
bash_completion.install "unar.bash_completion", "lsar.bash_completion"
|
|
end
|
|
end
|
|
|
|
def test
|
|
system bin/'unar', '--version'
|
|
system bin/'lsar', '--version'
|
|
end
|
|
end
|