-
Notifications
You must be signed in to change notification settings - Fork 7
38 lines (31 loc) · 1.14 KB
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
32
33
34
35
36
37
38
# typed: false
# frozen_string_literal: true
class MynewtNewtAT16 < Formula
desc "Package, build and installation system for Mynewt OS applications"
homepage "https://mynewt.apache.org"
url "https://github.com/apache/mynewt-newt/archive/mynewt_1_6_0_tag.tar.gz"
version "1.6.0"
sha256 "5245fba3d2befc44cd71733dc5c9ae07681cc47d8f79152f439c021d446b7122"
bottle do
root_url "https://github.com/JuulLabs-OSS/binary-releases/raw/master/mynewt-newt-tools_1.6.0"
sha256 cellar: :any_skip_relocation, high_sierra: "8dea2947d0cfd60729f5faf17db867ceeae639541849db3e00f380af1a140f3a"
end
keg_only :versioned_formula
depends_on "go" => :build
depends_on arch: :x86_64
def install
contents = Dir["{*,.git,.gitignore}"]
gopath = buildpath/"gopath"
(gopath/"src/mynewt.apache.org/newt").install contents
ENV["GOPATH"] = gopath
ENV.prepend_create_path "PATH", gopath/"bin"
cd gopath/"src/mynewt.apache.org/newt/newt" do
system "go", "install"
bin.install gopath/"bin/newt"
end
end
test do
# Compare newt version string
assert_equal "1.6.0", shell_output("#{bin}/newt version").split.last
end
end