blob: 3eafc0ba3bfd1f833186088a719b3bd7f96b8a9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  | 
require "formula"
class Clib < Formula
  homepage "https://github.com/clibs/clib"
  url "https://github.com/clibs/clib/archive/1.2.2.tar.gz"
  sha1 "e103638102f33cb38308d6f108feea9f0daff08a"
  bottle do
    cellar :any
    sha1 "078a75c4851fd7baef7dc1b44b2573c873d61ef4" => :mavericks
    sha1 "3b694a2c43b542317795383df940404edf91ada9" => :mountain_lion
    sha1 "2551a74714e88fe36b44132ab9b9f55554c12cd8" => :lion
  end
  def install
    ENV["PREFIX"] = prefix
    system "make", "install"
  end
  test do
    system "#{bin}/clib", "install", "stephenmathieson/rot13.c"
  end
end
  |