mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* upower -> 1.91.2 in updater-upower-1.91.2 * updater-upower-1.91.2: Package File Update Run on linux/amd64 container. * updater-upower-1.91.2: Package File Update Run on linux/arm/v7 container. --------- 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>
37 lines
1.3 KiB
Ruby
37 lines
1.3 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Upower < Meson
|
|
description 'Abstraction for enumerating power devices, listening to device events and querying history and statistics'
|
|
homepage 'https://upower.freedesktop.org'
|
|
version '1.91.2'
|
|
license 'GPL-2'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.freedesktop.org/upower/upower.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6255eec40126dd106f84a392f3202da3096ac308d6d0b8ba0f392ffad2446ad9',
|
|
armv7l: '6255eec40126dd106f84a392f3202da3096ac308d6d0b8ba0f392ffad2446ad9',
|
|
x86_64: 'e5b20f46deaea68dafbe0a5ee17a4bd66d3b5aa09d0814fa00bf2131908b3b63'
|
|
})
|
|
|
|
depends_on 'docbook_xml' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glib' => :library
|
|
depends_on 'glibc' => :library
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'gtk_doc' => :build
|
|
depends_on 'libgudev' => :executable
|
|
depends_on 'libgudev' => :library
|
|
depends_on 'libusb' => :build
|
|
depends_on 'libxslt' => :build
|
|
depends_on 'py3_pygments' => :build
|
|
|
|
meson_options "-Dos_backend=linux \
|
|
-Dsystemdsystemunitdir=no \
|
|
-Dhistorydir=#{CREW_PREFIX}/var \
|
|
-Dudevrulesdir=#{CREW_PREFIX}/etc/udev \
|
|
-Dudevhwdbdir=#{CREW_PREFIX}/etc/udev"
|
|
end
|