mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* gparted -> 1.8.1 in updater-gparted-1.8.1 * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * updater-gparted-1.8.1: Package File Update Run on linux/arm/v7 container. * updater-gparted-1.8.1: Package File Update Run on linux/amd64 container. * Cleanup gparted. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update dependencies to use :executable instead of :executable_only 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: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
36 lines
1.1 KiB
Ruby
36 lines
1.1 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libgsf < Autotools
|
|
description 'The G Structured File Library'
|
|
homepage 'https://gitlab.gnome.org/GNOME/libgsf'
|
|
version "1.14.52-634340d-#{CREW_ICU_VER}"
|
|
license 'GPL-2 and LGPL-2'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/libgsf.git'
|
|
git_hashtag '634340d31177c02ccdb43171e37291948e7f8974'
|
|
# git_hashtag "LIBGSF_#{version.split('-').first.gsub('.', '_')}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '1b1733aadf3d130e5838417b8ed0c1be4612292c6e3cd091d95779a0b3cbf3de',
|
|
armv7l: '1b1733aadf3d130e5838417b8ed0c1be4612292c6e3cd091d95779a0b3cbf3de',
|
|
x86_64: '39d75477e83bbfe3b0c595eb98acb2059212dd1bbafd340462f8d783f7e33304'
|
|
})
|
|
|
|
depends_on 'bzip2' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'gdk_pixbuf' => :executable
|
|
depends_on 'glib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gtk_doc' => :build
|
|
depends_on 'icu4c' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'zlib' # R
|
|
|
|
gnome
|
|
|
|
autotools_configure_options '--enable-shared=yes \
|
|
--disable-maintainer-mode \
|
|
--enable-introspection'
|
|
end
|