mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add unbuilt xterm to updater-xterm-401 * updater-xterm-401: Build Run on linux/amd64. * updater-xterm-401: Package File Update Run on linux/amd64 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
90 lines
2.4 KiB
Ruby
90 lines
2.4 KiB
Ruby
require 'package'
|
|
|
|
class Xterm < Package
|
|
description 'The xterm program is a terminal emulator for the X Window System.'
|
|
homepage 'https://invisible-island.net/xterm/'
|
|
version '401'
|
|
license 'MIT'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/ThomasDickey/xterm-snapshots.git'
|
|
git_hashtag "xterm-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '30ccd40e266863a4ff42fa6dc6edb3a5aabb61dd98f760f6454f70690cb95138',
|
|
armv7l: '30ccd40e266863a4ff42fa6dc6edb3a5aabb61dd98f760f6454f70690cb95138',
|
|
x86_64: '4bf2741f8e706d2b69fa2ff46d50e5c7ccf5dcd15d29ab12b0c5382566cc4a32'
|
|
})
|
|
|
|
depends_on 'fontconfig' # R
|
|
depends_on 'freetype' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'libice' # R
|
|
depends_on 'libutempter' # R
|
|
depends_on 'libx11' # R
|
|
depends_on 'libxaw' # R
|
|
depends_on 'libxaw' # R
|
|
depends_on 'libxaw' => :build
|
|
depends_on 'libxext' # R
|
|
depends_on 'libxft' # R
|
|
depends_on 'libxinerama' # R
|
|
depends_on 'libxmu' # R
|
|
depends_on 'libxpm' # R
|
|
depends_on 'libxt' # R
|
|
depends_on 'luit' => :build
|
|
depends_on 'ncurses' # R
|
|
depends_on 'pcre' # R
|
|
depends_on 'sommelier'
|
|
|
|
no_env_options
|
|
|
|
def self.patch
|
|
system "sed -i '/^LDFLAGS/ s/$/ -DUSE_TERMINFO=1 -ltinfo/' Makefile.in"
|
|
end
|
|
|
|
def self.build
|
|
system "./configure #{CREW_CONFIGURE_OPTIONS} \
|
|
--disable-imake \
|
|
--enable-16bit-chars \
|
|
--enable-256-color \
|
|
--enable-88-color \
|
|
--enable-ansi-color \
|
|
--enable-broken-osc \
|
|
--enable-broken-st \
|
|
--enable-dabbrev \
|
|
--enable-dec-locator \
|
|
--enable-double-buffer \
|
|
--enable-doublechars \
|
|
--enable-exec-xterm \
|
|
--enable-freetype \
|
|
--enable-i18n \
|
|
--enable-load-vt-fonts \
|
|
--enable-logging \
|
|
--enable-luit \
|
|
--enable-mini-luit \
|
|
--enable-narrowproto \
|
|
--enable-readline-mouse \
|
|
--enable-regis-graphics \
|
|
--enable-sixel-graphics \
|
|
--enable-tcap-query \
|
|
--enable-toolbar \
|
|
--enable-warnings \
|
|
--enable-wide-chars \
|
|
--with-app-defaults=#{CREW_PREFIX}/share/X11/app-defaults/ \
|
|
--with-pcre \
|
|
--with-pkg-config \
|
|
--with-tty-group=tty \
|
|
--with-utempter \
|
|
--with-x \
|
|
--with-xinerama \
|
|
--with-xpm=#{CREW_PREFIX}"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system "make install DESTDIR=#{CREW_DEST_DIR}"
|
|
system "make install-ti DESTDIR=#{CREW_DEST_DIR}"
|
|
end
|
|
end
|