Files
chromebrew/packages/luit.rb
Satadru Pramanik, DO, MPH, MEng 84a1b73fb0 x updates (#7906)
* x updates

* update libfontenc

* add luit

* update license

* add version var to git_hashtag
2023-02-07 19:34:07 -06:00

41 lines
1.7 KiB
Ruby

# Adapted from Arch Linux luit PKGBUILD at:
# https://github.com/archlinux/svntogit-packages/raw/packages/luit/trunk/PKGBUILD
require 'package'
class Luit < Package
description 'Filter that can be run between an arbitrary application and a UTF-8 terminal emulator'
homepage 'https://invisible-island.net/luit/luit.html'
version '2_0_20230201'
license 'custom'
compatibility 'all'
source_url 'https://github.com/ThomasDickey/luit-snapshots.git'
git_hashtag "v#{version}"
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/luit/2_0_20230201_armv7l/luit-2_0_20230201-chromeos-armv7l.tar.zst',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/luit/2_0_20230201_armv7l/luit-2_0_20230201-chromeos-armv7l.tar.zst',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/luit/2_0_20230201_i686/luit-2_0_20230201-chromeos-i686.tar.zst',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/luit/2_0_20230201_x86_64/luit-2_0_20230201-chromeos-x86_64.tar.zst'
})
binary_sha256({
aarch64: '04d87e98277c2b522ea8f088b11a79a46abb15700dc44db9cd85e17e4c37d111',
armv7l: '04d87e98277c2b522ea8f088b11a79a46abb15700dc44db9cd85e17e4c37d111',
i686: '76a095380f067f4e1e50a0f52fa9c7fca2764d4fef9f44872d51bb6fa3102d12',
x86_64: '038cf6925d94fdb7ab7f9982c998eadeedd254e6e0a13c5e7db4b4ef6dc0a094'
})
depends_on 'glibc' # R
depends_on 'libfontenc' # R
depends_on 'libx11' => ':build'
def self.build
system "./configure #{CREW_OPTIONS} --enable-fontenc"
system 'make'
end
def self.install
system "make DESTDIR=#{CREW_DEST_DIR} install"
end
end