homebrew-core/Formula/rig.rb

28 lines
1.3 KiB
Ruby

class Rig < Formula
desc "Provides fake name and address data"
homepage "https://rig.sourceforge.io/"
url "https://downloads.sourceforge.net/project/rig/rig/1.11/rig-1.11.tar.gz"
sha256 "00bfc970d5c038c1e68bc356c6aa6f9a12995914b7d4fda69897622cb5b77ab8"
license "GPL-2.0"
bottle do
sha256 cellar: :any_skip_relocation, big_sur: "e763b581f6a9410df5cca2384f0f9108c06a1c2e90ad3ebfccf7bf2297b7b641"
sha256 cellar: :any_skip_relocation, catalina: "e75fa428f9833207c6fa53e005e32c8d3af48206e08ded637d9633c2af1e0643"
sha256 cellar: :any_skip_relocation, mojave: "8f311170956140550544c6a9e9b31068b61c5db52fefa2c92dd0ad565c0fc145"
sha256 cellar: :any_skip_relocation, high_sierra: "770e85dcfaeec7cf4e4799572b102bf436afc9f3d28eb828ef838b5a1e1a8152"
sha256 cellar: :any_skip_relocation, sierra: "fcc18ba335af01c00a5a7e7e41f6431192393d13eb374513ebe9b0b2a75ab0a0"
sha256 cellar: :any_skip_relocation, el_capitan: "d82301a0557554e57252ea0d020f32e1d13485077c54f4d68cce01ee9d1b34a3"
sha256 cellar: :any_skip_relocation, yosemite: "785921276b725db4d309ed0833c7f9fece46b6c73d33caa8e74fec614d8afa68"
end
def install
system "make"
bin.install "rig"
pkgshare.install Dir["data/*"]
end
test do
system "#{bin}/rig"
end
end