Skip to content

Commit

Permalink
Merge pull request #20 from BigOokie/skycoin-cli-formula
Browse files Browse the repository at this point in the history
Add new formula for skycoin-cli
  • Loading branch information
olemis authored Apr 27, 2019
2 parents 25e9c84 + 4da2184 commit 3c46d7a
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ script:
# ---- skycoin-cx
- brew install skycoin-cx
- brew unlink skycoin-cx
# ---- skycoin-cli
- brew install skycoin-cli
- brew unlink skycoin-cli
# ---- objconv
- brew install objconv
- brew unlink objconv
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## Updates 2019/04

### Added
- Formula for installing [Skycoin Command Line Tools (CLI)](https://github.com/skycoin/skycoin/tree/master/cmd/cli) v0.25.1
- Update CX formula for release [v0.6.2](https://github.com/skycoin/cx/releases/tag/v0.6.2)

### Fixed
Expand Down
35 changes: 35 additions & 0 deletions Formula/skycoin-cli.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# MIT License
#
# Copyright (c) 2019 BigOokie
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

class SkycoinCli < Formula
desc "Skycoin Command Line Interface (CLI)"
homepage "https://github.com/skycoin/skycoin/tree/master/cmd/cli"
url "https://downloads.skycoin.net/wallet/skycoin-0.25.1-cli-osx-darwin-x64.zip"
version "0.25.1"
sha256 "449d8fc4527feb4f61e5013791b7098df702c2284a119f79ecda94042fc366c0"

bottle :unneeded

def install
bin.install "skycoin-cli"
end
end

0 comments on commit 3c46d7a

Please sign in to comment.