Skip to content

Commit

Permalink
Create iselect.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmyczko authored Jan 13, 2022
1 parent 68f2798 commit 16fab52
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions iselect.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
class Iselect < Formula
desc "Interactive line selection tool"
homepage "http://www.ossp.org/pkg/tool/iselect/"
url "ftp://ftp.ossp.org/pkg/tool/iselect/iselect-1.4.0.tar.gz"
sha256 "5b75fc5fa5407e85fa77d2a299c4e7628c0213116809f343946e62a8a25c5b1b"
license "GPL-2-only"

# depends_on "cmake" => :build

def install
system "./configure", *std_configure_args, "--disable-silent-rules"
system "make", "install"
end

test do
system "true"
end
end

0 comments on commit 16fab52

Please sign in to comment.