Files
chromebrew/packages/xa.rb
chromebrew-actions[bot] 8117f22bb4 x_updates — xa => 2.4.1,xauth => 1.1.4,xbitmaps => 1.1.3,xcb_util_cursor => 0.1.5,xcb_util_image => 0.4.1,xcb_util_keysyms => 0.4.1,xcb_util_renderutil => 0.3.10,xcb_util_wm => 0.4.2,xcb_util_xrm => 1.3-2 (#12460)
* More X updates

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust xbitmaps source

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add xcb_util_image build

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust xauth source

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust xauth build and version detection.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add gperf

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* x_updates: Build Run on linux/386.

* x_updates: Package File Update Run on linux/386 container.

* x_updates: Package File Update Run on linux/amd64 container.

* x_updates: Package File Update Run on linux/arm/v7 container.

* Add more xcb updates

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* x_updates: Package File Update Run on linux/386 container.

* Updte xcb_util_xrm

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* x_updates: Package File Update Run on linux/arm/v7 container.

* fix typo

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* remove filelist

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

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>
2025-08-15 01:30:43 +00:00

32 lines
970 B
Ruby

require 'package'
class Xa < Package
description 'xa is a high-speed, two-pass portable cross-assembler.'
homepage 'https://www.floodgap.com/retrotech/xa/'
version '2.4.1'
license 'GPL-2'
compatibility 'all'
source_url "https://www.floodgap.com/retrotech/xa/dists/xa-#{version}.tar.gz"
source_sha256 '32f2164c99e305218e992970856dd8e2309b5cb6ac4758d7b2afe3bfebc9012d'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '6655914025fa35b6e2a626e1779407a3f894510c8e2c766fbccba67afdbccc3e',
armv7l: '6655914025fa35b6e2a626e1779407a3f894510c8e2c766fbccba67afdbccc3e',
i686: '91fa492bf0232bbd54e1d38d0b87d253e64a0ca0da702034b4c59140408258b1',
x86_64: 'd36c75469a74c8f02dbe12ad6be6f47cadfc5f24fc22367ecf108fefae1b5254'
})
def self.patch
system "sed -i 's,DESTDIR = /usr/local,DESTDIR = #{CREW_DEST_PREFIX},' Makefile"
end
def self.build
system 'make'
end
def self.install
system 'make', 'install'
end
end