blob: 8e31f79fd9f30b1a78df25b9392920366872f98e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Appswitch <Formula
  url 'http://web.sabi.net/nriley/software/appswitch-1.1.tar.gz'
  homepage 'http://web.sabi.net/nriley/software/'
  md5 '07cf9884a07939da487898cddba0c296'
  def install
    system "#{ENV.cc} -o appswitch #{ENV.cflags} main.c -framework ApplicationServices"
    man1.install gzip('appswitch.1')
    bin.install 'appswitch'
  end
end
  |