aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/launch.rb
blob: 82ec776f738e9f0d03e2657dad06aa4dd29fb2ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Launch < Formula
  url 'http://web.sabi.net/nriley/software/launch-1.1.tar.gz'
  homepage 'http://web.sabi.net/nriley/software/'
  sha1 '000d6f1063f1b9091a8b10de90cfa778ed6a6ed1'

  def install
    rm_rf "launch" # We'll build it ourself, thanks.
    system "#{ENV.cc} -o launch -std=c99 #{ENV.cflags} main.c -framework ApplicationServices"
    man1.install gzip('launch.1')
    bin.install 'launch'
  end
end