mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* f2fs-tools 1.14.0 -> 1.16.0 * faad2 2.10.1 -> 2.11.1 * fakeroot 1.25.3 -> 1.35.1 * faultstat 0.01.01 -> 0.01.11 * fcft 2.5.1 -> 3.1.8 * feh 3.6.3 -> 3.10.3 * fetch 12.0.10 -> 12.0.11 * Add libgnt package * Finch 2.12.0-1 -> 2.14.13 * fish 3.6.1 -> 3.7.1 * flatseal 1.7.5 -> 2.2.0 * flif 0.3 -> 0.4 * fnotifystat 0.02.02 -> 0.03.00 * Foliate 2.6.4 -> 3.1.1 * Folks 0.15.7 -> 0.15.9 * util_macros 1.19.3 -> xorg_macros 1.20.1 * font-util 1.3.2 -> 1.4.1 * font-adobe-100dpi 1.0.3 -> 1.0.4 * font-adobe-75dpi 1.0.3 -> 1.0.4 * font-adobe-utopia-100dpi 1.0.4 -> 1.0.5 * font-adobe-utopia-75dpi 1.0.4 -> 1.0.5 * font-adobe-utopia-type1 1.0.4 -> 1.0.5 * font-bh-100dpi 1.0.3 -> 1.0.4 * font-bh-75dpi 1.0.3 -> 1.0.4 * font-bh-lucidatypewriter-100dpi 1.0.3 -> 1.0.4 * font-bh-lucidatypewriter-75dpi 1.0.3 -> 1.0.4 * font-bh-ttf 1.0.3 -> 1.0.4 * font-bh-type1 1.0.3 -> 1.0.4 * font-bitstream-100dpi 1.0.3 -> 1.0.4 * font-bitstream-75dpi 1.0.3 -> 1.0.4 * font-bitstream-type1 1.0.3 -> 1.0.4 * font-cursor-misc 1.0.3 -> 1.0.4 * font-daewoo-misc 1.0.3 -> 1.0.4 * font-dec-misc 1.0.3 -> 1.0.4 * font-isas-misc 1.0.3 -> 1.0.4 * font-jis-misc 1.0.3 -> 1.0.4 * font-misc-misc 1.1.2 -> 1.1.3 * font-mutt-misc 1.0.3 -> 1.0.4 * Add libspiro package * fontforge 20170731 -> 20230101 * tllist 1.0.5 -> 1.1.0 * foot 1.15.0 -> 1.18.0 * forkstat 0.02.10 -> 0.03.02 * fossil 2.6 -> 2.24 * Fragments 2.1.1 -> 3.0.1 * FreeGLUT 3.2.1 -> 3.6.0
32 lines
1.0 KiB
Ruby
32 lines
1.0 KiB
Ruby
require 'package'
|
|
|
|
class Xcb_util < Package
|
|
description 'The xcb-util package provides additional extensions to the XCB library.'
|
|
homepage 'https://xcb.freedesktop.org/'
|
|
version '0.4.0-1'
|
|
compatibility 'all'
|
|
license 'MIT-with-advertising'
|
|
source_url 'https://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2'
|
|
source_sha256 '46e49469cb3b594af1d33176cd7565def2be3fa8be4371d62271fabb5eae50e9'
|
|
binary_compression 'tpxz'
|
|
|
|
binary_sha256({
|
|
aarch64: '4030acacf2ffdade30af61d834b64b72c03def81cf2137115023d85f77fc7355',
|
|
armv7l: '4030acacf2ffdade30af61d834b64b72c03def81cf2137115023d85f77fc7355',
|
|
i686: '88d247fc1caeb4e5e19feb42ea795a7e5e0d54db529deaa5c182b9efdbceeecb',
|
|
x86_64: 'bc0d5f03baf0f4d771f5fee8c860321fc62ec50972410d7586a34c5f9d4f4689'
|
|
})
|
|
|
|
depends_on 'libxcb'
|
|
depends_on 'xorg_macros'
|
|
|
|
def self.build
|
|
system "./configure --prefix=#{CREW_PREFIX} --libdir=#{CREW_LIB_PREFIX}"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|