2018-08-06 00:50:40 +00:00
|
|
|
class OsinfoDb < Formula
|
|
|
|
desc "Libosinfo database files"
|
|
|
|
homepage "https://libosinfo.org/"
|
2019-03-16 18:03:46 +00:00
|
|
|
url "https://releases.pagure.org/libosinfo/osinfo-db-20190304.tar.xz"
|
|
|
|
sha256 "0e31c3f19f2f897dd2ba08d8656fe0bc4abc24f9c1558aff46bb9e9858cbbdb6"
|
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
|
2019-01-26 21:58:02 +00:00
|
|
|
system "osinfo-db-validate", "--local"
|
2018-08-06 00:50:40 +00:00
|
|
|
end
|
|
|
|
end
|