mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt gnome_calculator to updater-gnome_calculator-49.1.1 * updater-gnome_calculator-49.1.1: Package File Update Run on linux/amd64 container. * updater-gnome_calculator-49.1.1: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
49 lines
1.3 KiB
Ruby
49 lines
1.3 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Gnome_calculator < Meson
|
|
description 'GNOME desktop calculator'
|
|
homepage 'https://wiki.gnome.org/Apps/Calculator'
|
|
version '49.1.1'
|
|
license 'LGPL-2.1+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/gnome-calculator.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'bbb2fb609c3a0d2e2ad177eb3fd231785fffe790f515345e4d39a3b85ab2efee',
|
|
armv7l: 'bbb2fb609c3a0d2e2ad177eb3fd231785fffe790f515345e4d39a3b85ab2efee',
|
|
x86_64: '236ea5bff327eeb0e879cf44d1d1c56562ff7db691a8bd830832b47f15440c0d'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gtk4' # R
|
|
depends_on 'gtksourceview_5' # R
|
|
depends_on 'libadwaita' # R
|
|
depends_on 'libgee' # R
|
|
depends_on 'libhandy' => :build
|
|
depends_on 'libsoup' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'mpc' # R
|
|
depends_on 'mpfr' # R
|
|
depends_on 'py3_itstool' => :build
|
|
depends_on 'py3_libxml2' => :build
|
|
depends_on 'py3_pygobject' => :build
|
|
depends_on 'python3' => :build
|
|
depends_on 'vala' => :build
|
|
depends_on 'wayland' => :build
|
|
|
|
gnome
|
|
|
|
def self.postinstall
|
|
puts <<~EOT.lightblue
|
|
|
|
To use the graphical calculator, execute 'gnome-calculator'
|
|
|
|
To use the command line calculator, execute 'gcalccmd'
|
|
EOT
|
|
end
|
|
end
|