blob: 969fb436ef8e2f0b058e216fbdc2ba710241272a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | require 'formula'
class Tlassemble < Formula
  homepage 'http://www.dayofthenewdan.com/projects/tlassemble/'
  url 'https://github.com/dbridges/cocoa-tlassemble/archive/v1.0.tar.gz'
  sha1 'a261e39acc38996ebe24df2c37f935d9db1033ca'
  def install
    system 'make'
    bin.install 'tlassemble'
  end
  test do
    system "\"#{bin}/tlassemble\" --help | grep 'tlassemble 1.0'"
  end
end
 |