mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt firefox to updater-firefox-147.0.2 * Adjust firefox deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust firefox deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Change all sommelier deps to => :logical deps Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix circular dependencies of docbook_xml and docbook_xml412. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup docbook circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix elogind, ffmpeg circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup more circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mark packages from successful builds as automatically buildable. * updater-firefox-147.0.2: Package File Update Run on linux/386 container. * Add filelists and updated packages. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix gstreamer deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle missing dlist, update pipewire filelist Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add rsu_client filelist Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Suggested changes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust elogind deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust docbook heredocs. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
31 lines
971 B
Ruby
31 lines
971 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Flatseal < Meson
|
|
description 'Flatseal is a graphical utility to review and modify permissions from your Flatpak applications.'
|
|
homepage 'https://github.com/tchx84/Flatseal/'
|
|
version '2.4.0'
|
|
license 'GPL-3+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/tchx84/Flatseal.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd7f3ba5d78ae99465b7cee071dcb47f7b14337800367cf70caaa27114a3edbcc',
|
|
armv7l: 'd7f3ba5d78ae99465b7cee071dcb47f7b14337800367cf70caaa27114a3edbcc',
|
|
x86_64: '49b06ba914fbd127eba0c386ee75ed23a48a5f36bc8d679af711ad1938c8f810'
|
|
})
|
|
|
|
depends_on 'desktop_file_utils'
|
|
depends_on 'gjs'
|
|
depends_on 'gtk4'
|
|
depends_on 'libadwaita'
|
|
depends_on 'sommelier' => :logical
|
|
depends_on 'webkitgtk_6'
|
|
|
|
run_tests
|
|
meson_install_extras do
|
|
FileUtils.symlink 'com.github.tchx84.Flatseal', "#{CREW_DEST_PREFIX}/bin/flatseal"
|
|
end
|
|
end
|