mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -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>
26 lines
794 B
Ruby
26 lines
794 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libsm < Autotools
|
|
description 'X.org X Session Management Library'
|
|
homepage 'https://www.x.org/wiki/'
|
|
version '1.2.6'
|
|
license 'MIT'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.freedesktop.org/xorg/lib/libsm.git'
|
|
git_hashtag "libSM-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '63dbc08e85a3feaeffeb0e740aa04dc60a8cd0e64921dc082d3d5082224c301b',
|
|
armv7l: '63dbc08e85a3feaeffeb0e740aa04dc60a8cd0e64921dc082d3d5082224c301b',
|
|
x86_64: '99b718f764e99b76ffa64b8bc92a5d061a3d1d38a40148eae2546a1f61d80fe1'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libbsd' # R
|
|
depends_on 'libice' # R
|
|
depends_on 'libx11' => :build
|
|
depends_on 'libxtrans' => :build
|
|
depends_on 'util_linux' # R
|
|
end
|