diff options
| author | Jack Nagel | 2014-02-27 21:47:38 -0600 |
|---|---|---|
| committer | Jack Nagel | 2014-02-27 21:53:21 -0600 |
| commit | 7046e4e37b87c08575d14263bdce763456b9ec2c (patch) | |
| tree | 1f8a506a547bbb64f6c1026c2d5431b27dd7766c /Library/Formula/mplayershell.rb | |
| parent | 9a18e85a7c77dd8adef4e1c34f564ab08fed5c2a (diff) | |
| download | homebrew-7046e4e37b87c08575d14263bdce763456b9ec2c.tar.bz2 | |
Add an xcodebuild helper and deprecate system "xcodebuild"
In the future we can remove the ENV munging branch from Formula#system.
Closes #27081.
Diffstat (limited to 'Library/Formula/mplayershell.rb')
| -rw-r--r-- | Library/Formula/mplayershell.rb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Library/Formula/mplayershell.rb b/Library/Formula/mplayershell.rb index aa86653af..99cd3099b 100644 --- a/Library/Formula/mplayershell.rb +++ b/Library/Formula/mplayershell.rb @@ -19,12 +19,13 @@ class Mplayershell < Formula depends_on :xcode def install - system "xcodebuild", "-project", "MPlayerShell.xcodeproj", - "-target", "mps", - "-configuration", "Release", - "clean", "build", - "SYMROOT=build", - "DSTROOT=build" + 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 |
