homebrew-core/Formula/mplayershell.rb
Jack Nagel 502ff84d9c Add an xcodebuild helper and deprecate system "xcodebuild"
In the future we can remove the ENV munging branch from Formula#system.

Closes Homebrew/homebrew#27081.
2014-02-27 21:53:21 -06:00

36 lines
871 B
Ruby

require 'formula'
class MPlayerPresented < Requirement
fatal true
default_formula 'mplayer'
satisfy { which('mplayer') || which('mplayer2') }
end
class Mplayershell < Formula
homepage 'https://github.com/donmelton/MPlayerShell'
url 'https://github.com/donmelton/MPlayerShell/archive/0.9.2.tar.gz'
sha1 '613d29e66e27e748c29b20df54888a8915e39490'
head 'https://github.com/donmelton/MPlayerShell.git'
depends_on MPlayerPresented
depends_on :macos => :lion
depends_on :xcode
def install
xcodebuild "-project",
"MPlayerShell.xcodeproj",
"-target", "mps",
"-configuration", "Release",
"clean", "build",
"SYMROOT=build",
"DSTROOT=build"
bin.install "build/Release/mps"
man1.install "Source/mps.1"
end
test do
system "#{bin}/mps"
end
end