blob: 12e5ca629c35974851019fd4952ef0f75b80013b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | class Sourcekitten < Formula
  homepage "https://github.com/jpsim/SourceKitten"
  url "https://github.com/jpsim/SourceKitten.git", :tag => "0.3.1"
  head "https://github.com/jpsim/SourceKitten.git"
  bottle do
    cellar :any
    sha1 "0c2eeaebca3d1e193ff097153d9f8d2afb307964" => :yosemite
    sha1 "f55c779524fb1dc74554e8e2592d402198bbc55d" => :mavericks
  end
  depends_on :xcode => ["6.1.1", :build]
  def install
    system "make", "prefix_install", "PREFIX=#{prefix}", "TEMPORARY_FOLDER=#{buildpath}/SourceKitten.dst"
  end
  test do
    system "#{bin}/sourcekitten", "syntax", "--text", "import Foundation // Hello World"
  end
end
 |