mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
21 lines
687 B
Ruby
21 lines
687 B
Ruby
require 'buildsystems/perl'
|
|
|
|
class Perl_percona_toolkit < PERL
|
|
description 'Percona Toolkit is a collection of advanced command-line tools used by Percona support staff to perform a variety of MySQL and system tasks that are too difficult or complex to perform manually.'
|
|
homepage 'https://www.percona.com/percona-toolkit'
|
|
version '3.7.0'
|
|
license 'GPL-2'
|
|
compatibility 'x86_64'
|
|
source_url 'https://github.com/percona/percona-toolkit.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
x86_64: '1ba48cd228bcf92b835d8902fa2a72267016687e8391878586a0e27b2abc5c4c'
|
|
})
|
|
|
|
depends_on 'go' => :build
|
|
depends_on 'mysql'
|
|
depends_on 'perl'
|
|
end
|