Files
chromebrew/packages/metadata_cleaner.rb
Satadru Pramanik, DO, MPH, MEng 9ed6ce95d3 Switch meson to using pip and update to 1.6.0 (#10638)
Signed-off-by: Satadru Pramanik <satadru@gmail.com>
2024-10-21 11:37:13 -05:00

27 lines
721 B
Ruby

require 'buildsystems/meson'
class Metadata_cleaner < Meson
description 'Python GTK application to view and clean metadata in files, using mat2'
homepage 'https://metadatacleaner.romainvigier.fr/'
version '2.5.6'
license 'GPL-3'
compatibility 'x86_64'
source_url 'https://gitlab.com/rmnvgr/metadata-cleaner.git'
git_hashtag "v#{version}"
depends_on 'desktop_file_utils' # R
depends_on 'gtk4' # R
depends_on 'py3_itstool' # R
depends_on 'libadwaita' # R
depends_on 'py3_meson' => :build
depends_on 'py3_mat2' # R
depends_on 'py3_pygobject' # R
depends_on 'python3' # R
no_compile_needed
def self.postinstall
ExitMessage.add "\nType 'metadata-cleaner' to get started.\n"
end
end