aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-25 22:30:50 -0800
committerAdam Vandenberg2012-02-25 22:30:50 -0800
commitc6631c2f07e7ea9063586f6f198117a2a5a6bf62 (patch)
treef364ba9e964d8d552c45e9e90b3ce0cf6893e23b /Library
parentfd963c0354964ef95c3a9e10b04d198eaa2515ee (diff)
downloadhomebrew-c6631c2f07e7ea9063586f6f198117a2a5a6bf62.tar.bz2
Remove platypus
This formula has an unversioned tarball, which no longer checksums as it has bumped forward without anyone noticing. Closes #10363.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/platypus.rb37
1 files changed, 0 insertions, 37 deletions
diff --git a/Library/Formula/platypus.rb b/Library/Formula/platypus.rb
deleted file mode 100644
index efb77a37d..000000000
--- a/Library/Formula/platypus.rb
+++ /dev/null
@@ -1,37 +0,0 @@
-require 'formula'
-
-class Platypus < Formula
- homepage 'http://www.sveinbjorn.org/platypus'
- url 'http://www.sveinbjorn.org/files/software/platypus.src.zip'
- version '4.4'
- md5 'e6fe23f7037a873394b70bcc62843940'
-
- def install
- # Fix paths
- inreplace ["CommonDefs.h", "CommandLineTool/platypus.1"] do |s|
- s.gsub! "/usr/local", prefix
- end
-
- # Build main command-line binary, we don't care about the App
- system "xcodebuild", "-target", "platypus", "-configuration", "Deployment", "ONLY_ACTIVE_ARCH=YES", "SYMROOT=build", "SDKROOT=", "MACOSX_DEPLOYMENT_TARGET="
-
- # Build application sub-binary needed by command-line utility
- system "xcodebuild", "-target", "ScriptExec", "-configuration", "Deployment", "ONLY_ACTIVE_ARCH=YES", "SYMROOT=build", "SDKROOT=", "MACOSX_DEPLOYMENT_TARGET="
-
- # Install binary and man page
- bin.install "build/Deployment/platypus"
- man1.install "CommandLineTool/platypus.1"
-
- # Install sub-binary parts to share
- cd 'build/Deployment/ScriptExec.app/Contents' do
- (share + 'platypus').install "MacOS/ScriptExec"
- (share + 'platypus/MainMenu.nib').install "Resources/English.lproj/MainMenu.nib/keyedobjects.nib"
- end
-
- # Install icons to share
- (share + 'platypus').install 'Icons/PlatypusDefault.icns'
-
- # Write version info to share
- (share + 'platypus/Version').write version
- end
-end