homebrew-virt-manager/osinfo-db.rb

20 lines
531 B
Ruby
Raw Normal View History

2018-08-06 00:50:40 +00:00
class OsinfoDb < Formula
desc "Libosinfo database files"
homepage "https://libosinfo.org/"
2018-12-25 21:03:45 +00:00
url "https://releases.pagure.org/libosinfo/osinfo-db-20181214.tar.xz"
sha256 "8dc1e980c8e1d8c043c22c63b7db20e7b4b34a73dbe98b9d31536eb83929d5a3"
2018-08-06 00:50:40 +00:00
depends_on "osinfo-db-tools" => :build
def install
system "osinfo-db-import", "--local", cached_download
# Copy the archive into the prefix to avoid empty installation error
cp_r "./", prefix
end
test do
system "#{bin}/osinfo-db-validate", "--local"
end
end