Commit 4ff36d56 authored by James Larrowe's avatar James Larrowe Committed by Ed Reel

Added zstd package (#2370)

* Added zstd package

* Added prefix and changed to versioned tarball
parent 068eadcd
require 'package'
class Zstd < Package
description 'Zstandard - Fast real-time compression algorithm'
homepage 'http://www.zstd.net'
version '1.3.4'
source_url 'https://github.com/facebook/zstd/archive/v1.3.4.tar.gz'
source_sha256 '92e41b6e8dd26bbd46248e8aa1d86f1551bc221a796277ae9362954f26d605a9'
def self.build
system 'make'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "PREFIX=#{CREW_PREFIX}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment