diff options
| author | Adam Vandenberg | 2012-10-14 12:35:10 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-14 12:35:10 -0700 |
| commit | 51e5e2ad61ebd9da85ab5fbd85d900162cfc45e0 (patch) | |
| tree | 2c1fe8978cb931584809ca11787f43ceeb201eda /Library | |
| parent | 32fae371a815ee5997643ea2d3a3715f7f13085d (diff) | |
| download | homebrew-51e5e2ad61ebd9da85ab5fbd85d900162cfc45e0.tar.bz2 | |
Remove staticrouted.
"Official" download no longer works, and no replacement has been proposed.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/staticrouted.rb | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/Library/Formula/staticrouted.rb b/Library/Formula/staticrouted.rb deleted file mode 100644 index ba82d9242..000000000 --- a/Library/Formula/staticrouted.rb +++ /dev/null @@ -1,34 +0,0 @@ -require 'formula' - -class Staticrouted < Formula - url 'http://alastairs-place.net/stuff/staticrouted.tar.bz2' - homepage 'http://lists.apple.com/archives/macos-x-server/2010/Jul/msg00220.html' - version '1.0.1' - md5 '1f76b4f15d3bc332d40732bde154a20e' - - depends_on :xcode # For working xcodebuild. - - def install - system "xcodebuild SYMROOT=build -target Everything" - sbin.install ["build/Release/staticroute", "build/Release/staticrouted"] - man8.install ["staticroute.8", "staticrouted.8"] - prefix.install "com.coriolis-systems.staticrouted.plist" - (prefix+"com.coriolis-systems.staticrouted.plist").chmod 0644 - end - - def caveats; <<-EOS.undent - If this is your first install, automatically load on login with: - sudo mkdir -p /Library/LaunchDaemons - sudo cp #{prefix}/com.coriolis-systems.staticrouted.plist /Library/LaunchDaemons/ - sudo launchctl load -w /Library/LaunchDaemons/com.coriolis-systems.staticrouted.plist - - If this is an upgrade and you already have the com.coriolis-systems.staticrouted.plist loaded: - sudo launchctl unload -w /Library/LaunchDaemons/com.coriolis-systems.staticrouted.plist - sudo cp #{prefix}/com.coriolis-systems.staticrouted.plist /Library/LaunchDaemons/ - sudo launchctl load -w /Library/LaunchDaemons/com.coriolis-systems.staticrouted.plist - - Or start it manually: - sudo staticrouted - EOS - end -end |
