Skip to content

Commit 4ae30e4

Browse files
committed
Add a Homebrew formula
1 parent e485e3f commit 4ae30e4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

dist/splitring.rb

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
require 'formula'
2+
3+
class Splitring < Formula
4+
homepage 'https://github.com/pnc/splitring'
5+
url 'https://github.com/pnc/splitring/archive/v1.1.tar.gz'
6+
sha1 'b3c88326502894cb3d88e4b9b830ac6007dbc390'
7+
8+
def install
9+
system "make"
10+
bin.install("splitring")
11+
end
12+
13+
test do
14+
system "#{bin}/splitring --version"
15+
end
16+
end

0 commit comments

Comments
 (0)