mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 18:33:54 +00:00
44 lines
1.4 KiB
Ruby
44 lines
1.4 KiB
Ruby
require File.expand_path("../Abstract/abstract-osquery-formula", __FILE__)
|
|
|
|
# Upstream project has requested we use a mirror as the main URL
|
|
# https://github.com/Homebrew/homebrew/pull/21419
|
|
class Xz < AbstractOsqueryFormula
|
|
desc "General-purpose data compression with high compression ratio"
|
|
homepage "http://tukaani.org/xz/"
|
|
url "https://fossies.org/linux/misc/xz-5.2.2.tar.gz"
|
|
mirror "http://tukaani.org/xz/xz-5.2.2.tar.gz"
|
|
sha256 "73df4d5d34f0468bd57d09f2d8af363e95ed6cc3a4a86129d2f2c366259902a2"
|
|
revision 1
|
|
|
|
bottle do
|
|
root_url "https://osquery-packages.s3.amazonaws.com/bottles"
|
|
cellar :any_skip_relocation
|
|
sha256 "97f36060a0cb74e0500ca2cc4eeb69d6cf448410edca91d3d1547c4fd4e10e8a" => :x86_64_linux
|
|
end
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
path = testpath/"data.txt"
|
|
original_contents = "." * 1000
|
|
path.write original_contents
|
|
|
|
# compress: data.txt -> data.txt.xz
|
|
system bin/"xz", path
|
|
assert !path.exist?
|
|
|
|
# decompress: data.txt.xz -> data.txt
|
|
system bin/"xz", "-d", "#{path}.xz"
|
|
assert_equal original_contents, path.read
|
|
end
|
|
end
|