mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 07:28:01 -05:00
* Update babl Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to gimp * Add built packages for linux/arm/v7 to gimp * Update gegl Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update libxshmfence Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to gimp * Add builds, update gimp Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Actually update gimp Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update pango, require introspection for gimp build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to gimp * Add built packages for linux/arm/v7 to gimp --------- 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>
23 lines
880 B
Ruby
23 lines
880 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libxshmfence < Autotools
|
|
description 'A library that exposes a event API on top of Linux futexes'
|
|
homepage 'http://t2sde.org/packages/libxshmfence.html'
|
|
version '1.3.3'
|
|
license 'HPND'
|
|
compatibility 'all'
|
|
source_url "https://xorg.freedesktop.org/releases/individual/lib/libxshmfence-#{version}.tar.xz"
|
|
source_sha256 '1129f95147f7bfe6052988a087f1b7cb7122283d2c47a7dbf7135ce0df69b4f8'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '02f4ab456e7cb76d57ce68cac91d1ff3e94b47b0590602537bee71fb3638e90d',
|
|
armv7l: '02f4ab456e7cb76d57ce68cac91d1ff3e94b47b0590602537bee71fb3638e90d',
|
|
i686: 'd5f1bad7c9f6ed83b3045f261577d9de9b427eb94d6fa987cc0788ebe9d5becb',
|
|
x86_64: 'cdf155dbc90266359e6542292d198630a598bc0c5867ce1e6c3590eef674b1ed'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'xorg_proto' => :build
|
|
end
|