43 lines
1.6 KiB
Bash
43 lines
1.6 KiB
Bash
# Template file for 'alacritty'
|
|
pkgname=alacritty
|
|
version=0.11.0
|
|
revision=1
|
|
build_style=cargo
|
|
make_install_args="--path alacritty"
|
|
hostmakedepends="pkg-config python3"
|
|
makedepends="freetype-devel fontconfig-devel libxcb-devel libxkbcommon-devel"
|
|
depends="libXcursor libXrandr libXi libXxf86vm ncurses alacritty-terminfo-${version}_${revision}"
|
|
short_desc="Cross-platform, GPU-accelerated terminal emulator"
|
|
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/alacritty/alacritty"
|
|
changelog="https://raw.githubusercontent.com/alacritty/alacritty/master/CHANGELOG.md"
|
|
distfiles="https://github.com/alacritty/alacritty/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=0fb3370c662f5b87d1b9a487aef999195212b192e08f6f68a572fed8fd637e07
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
ppc64*) ;;
|
|
ppc*) broken="ftbfs: thread 'main' panicked at 'slice index starts at 4289555962 but ends at 114', /builddir/rustc-1.46.0-src/src/libstd/io/mod.rs:396:27";;
|
|
# disable doctests on i686
|
|
i686) make_check_args="--tests";;
|
|
esac
|
|
|
|
post_install() {
|
|
vcompletion extra/completions/alacritty.bash bash
|
|
vcompletion extra/completions/alacritty.fish fish
|
|
vcompletion extra/completions/_alacritty zsh
|
|
vinstall extra/linux/Alacritty.desktop 644 usr/share/applications
|
|
vinstall extra/logo/alacritty-term.svg 644 usr/share/icons/hicolor/scalable/apps Alacritty.svg
|
|
vman extra/alacritty.man alacritty.1
|
|
vsconf alacritty.yml
|
|
|
|
tic -o ${DESTDIR}/usr/share/terminfo -xe alacritty,alacritty-direct extra/alacritty.info
|
|
}
|
|
|
|
alacritty-terminfo_package() {
|
|
short_desc+=" - terminfo data"
|
|
pkg_install() {
|
|
vmove usr/share/terminfo
|
|
}
|
|
}
|