Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

vpcs 0.6 new formula #35311

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions Library/Formula/vpcs.rb
@@ -0,0 +1,16 @@
class Vpcs < Formula
homepage "http://vpcs.sourceforge.net/"
url "https://downloads.sourceforge.net/project/vpcs/0.6/vpcs-0.6-src.tbz"
sha1 "6ecdc42f3026286ff6decd588a08898b52ec558f"

def install
cd "src" do
system "make", "-f", "Makefile.osx"
bin.install "vpcs"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No make install?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The make install command is not provided by vpcs team.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, thanks.

end
end

test do
system "vpcs", "--version"
end
end