mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Update libice, libsm, libx11, libxau Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove keys from env hash if they are blank. (This fixes the libx11 build.) Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add binaries and add dbus update Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add libsm builds Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust libice compatibility. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * dbus: Package File Update Run on linux/386 container. * Adjust linter handoff workflow. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint const.rb Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust workflow to add reviewers. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove i686 libice manifest. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
62 lines
2.3 KiB
Ruby
62 lines
2.3 KiB
Ruby
require 'buildsystems/meson'
|
|
|
|
class Dbus < Meson
|
|
description 'D-Bus is a message bus system, a simple way for applications to talk to one another.'
|
|
homepage 'https://www.freedesktop.org/wiki/Software/dbus/'
|
|
version '1.16.2'
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.freedesktop.org/dbus/dbus.git'
|
|
git_hashtag "dbus-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9ba0963aed2de17697928e7d3ce9527c684ec061216b815d7c1ceb99eac8ef3e',
|
|
armv7l: '9ba0963aed2de17697928e7d3ce9527c684ec061216b815d7c1ceb99eac8ef3e',
|
|
i686: 'c8c844aea251b77c0c476aa7057d51a28ae29484064515a2c84933a40530a486',
|
|
x86_64: '35187f9b328840273764745c73d119b25ad19d355a58db9a439efa29e90315b5'
|
|
})
|
|
|
|
depends_on 'expat' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libice' => :build unless ARCH == 'i686'
|
|
depends_on 'libsm' => :build unless ARCH == 'i686'
|
|
depends_on 'libx11' unless ARCH == 'i686' # R
|
|
|
|
print_source_bashrc
|
|
|
|
meson_options "-Dapparmor=disabled \
|
|
-Ddbus_session_bus_listen_address='unix:path=/var/run/dbus/system_bus_socket' \
|
|
-Ddoxygen_docs=disabled \
|
|
-Dlibaudit=disabled \
|
|
-Dlaunchd=disabled \
|
|
-Dxml_docs=disabled \
|
|
-Druntime_dir=/var/run \
|
|
-Dsystemd=disabled \
|
|
-Dx11_autolaunch=#{ARCH == 'i686' ? 'disabled' : 'enabled'}"
|
|
|
|
def self.install
|
|
system "DESTDIR=#{CREW_DEST_DIR} #{CREW_NINJA} -C builddir install"
|
|
@dbusconfigenv = <<~DBUSCONFIGEOF
|
|
# Dbus settings
|
|
[[ -d '/var/run/dbus' ]] || ( sudo mkdir -p /var/run/dbus && sudo chown chronos /var/run/dbus )
|
|
dbus-uuidgen --ensure
|
|
DBUS_SYSTEM_BUS_ADDRESS='unix:path=/var/run/dbus/system_bus_socket'
|
|
[[ "$DBUS_SESSION_BUS_ADDRESS"=="disabled:" ]] && unset DBUS_SESSION_BUS_ADDRESS
|
|
if [ -z "${DBUS_SESSION_BUS_ADDRESS}" ]; then
|
|
# if not found, launch a new one
|
|
eval `dbus-launch --sh-syntax`
|
|
# echo "D-Bus per-session daemon address is: $DBUS_SESSION_BUS_ADDRESS"
|
|
fi
|
|
dbus-update-activation-environment --all
|
|
DBUSCONFIGEOF
|
|
File.write('env.d_dbus', @dbusconfigenv)
|
|
FileUtils.install 'env.d_dbus', "#{CREW_DEST_PREFIX}/etc/env.d/dbus", mode: 0o644
|
|
end
|
|
|
|
def self.postinstall
|
|
FileUtils.rm_f "#{CREW_PREFIX}/etc/env.d/03-dbus" if File.file?("#{CREW_PREFIX}/etc/env.d/03-dbus")
|
|
end
|
|
end
|