mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Update tepl_6 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update libgedit_gtksourceview Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust compatibility for libgedit_gfls Signed-off-by: Satadru Pramanik <satadru@gmail.com> * tepl: Build Run on linux/arm/v7. * tepl: Build Run on linux/amd64. * tepl: Package File Update Run on linux/amd64 container. * Update const.rb * Update tepl_6.rb --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Ed Reel <edreel@gmail.com>
27 lines
839 B
Ruby
27 lines
839 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Libgedit_amtk < Meson
|
|
description 'Actions, Menus and Toolbars Kit for GTK+ applications'
|
|
homepage 'https://gedit-technology.github.io'
|
|
version '5.9.1'
|
|
license 'LGPL-2.1+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/World/gedit/libgedit-amtk.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'fedcc92166518b7291b4def67647730048305246e4af11d845f3eb53f2033b7d',
|
|
armv7l: 'fedcc92166518b7291b4def67647730048305246e4af11d845f3eb53f2033b7d',
|
|
x86_64: 'e1895ca9a0816aec23fc128edcc1812c97a94be48694f3176a9775d6b044108e'
|
|
})
|
|
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'gtk3' # R
|
|
depends_on 'llvm_lib' => :build
|
|
|
|
meson_options '-Dgtk_doc=false'
|
|
end
|