aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/staticrouted.rb
blob: 0feccd28ffb74c9dd9b7dc8384e9a479b32fdcb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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'

  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"
  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