blob: 7b59ed83bcf122bdda2028d151bde6ba217867ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
require "formula"
class Stlink < Formula
homepage "https://github.com/texane/stlink"
url "https://github.com/texane/stlink/archive/1.0.0.tar.gz"
sha1 "d55bbdd8c4c907be15b28d089fddc86e7a167766"
bottle do
cellar :any
sha1 "6c0fa936a2fbf20fb05c2a9503cbd8b7b3b6a8d6" => :yosemite
sha1 "3aa833eca3455df534e2b1f484543f9e5e09f1ac" => :mavericks
sha1 "9516c50fc08774b01d8893b8fc0cd5d11ebae017" => :mountain_lion
end
depends_on "libusb"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "pkg-config" => :build
def install
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
test do
system "st-util", "-h"
end
end
|