vp-build/srcpkgs/kitty/template

42 lines
1.3 KiB
Bash

# Template file for 'kitty'
pkgname=kitty
version=0.12.3
revision=1
pycompile_version="$py3_ver"
pycompile_dirs="usr/lib/kitty"
hostmakedepends="ncurses pkg-config python3 wayland-devel wayland-protocols"
makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel
python3-devel wayland-devel wayland-protocols"
depends="kitty-terminfo-${version}_${revision}"
short_desc="Modern, hackable, featureful, OpenGL based terminal emulator"
maintainer="Benjamin Slade <slade@jnanam.net>"
license="GPL-3.0-or-later"
homepage="https://sw.kovidgoyal.net/kitty/"
changelog="https://sw.kovidgoyal.net/kitty/changelog.html"
distfiles="https://github.com/kovidgoyal/kitty/releases/download/v${version}/kitty-${version}.tar.xz"
checksum=60d8cc0bb9b3a83756916985ee41776d6b02ab4262c1e7b4546a451632b48298
do_build() {
if [ "$CROSS_BUILD" ]; then
export CFLAGS="-I${XBPS_CROSS_BASE}/${py3_inc}"
sed -i "s|-fpie|-fpie ${CFLAGS}|g" setup.py
fi
case "$XBPS_TARGET_MACHINE" in
*-musl)
sed -i 's/pow10/pow_10/g' kitty/parser.c;;
esac
python3 setup.py linux-package --prefix=${DESTDIR}/usr --verbose
}
do_install() {
vsconf ${DESTDIR}/usr/share/doc/kitty/html/_downloads/kitty.conf
}
kitty-terminfo_package() {
short_desc+=" - terminfo data"
noarch=yes
pkg_install() {
vmove usr/share/terminfo
}
}