27 lines
799 B
Ruby
27 lines
799 B
Ruby
class OsinfoDb < Formula
|
|
desc "Osinfo database of operating systems for virtualization provisioning tools"
|
|
homepage "https://libosinfo.org/"
|
|
url "https://releases.pagure.org/libosinfo/osinfo-db-20211013.tar.xz"
|
|
sha256 "c2e47e9432048f3016e36803eef3dd482d12ee32360c22958f8ab6f4323a692c"
|
|
license "GPL-2.0-or-later"
|
|
|
|
livecheck do
|
|
url "https://releases.pagure.org/libosinfo/?C=M&O=D"
|
|
regex(/href=.*?osinfo-db[._-]v?(\d+(?:\.\d+)*)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "61764bf4f8385b574ec9d4886453bfab350abc89249e38827969a32686a86e34"
|
|
end
|
|
|
|
depends_on "osinfo-db-tools" => [:build, :test]
|
|
|
|
def install
|
|
system "osinfo-db-import", "--dir=#{share}/osinfo", cached_download
|
|
end
|
|
|
|
test do
|
|
system "osinfo-db-validate", "--system"
|
|
end
|
|
end
|