74 lines
2.3 KiB
Bash
74 lines
2.3 KiB
Bash
# Template file for 'kitty'
|
|
pkgname=kitty
|
|
version=0.32.2
|
|
revision=1
|
|
build_helper="python3"
|
|
pycompile_dirs="usr/lib/kitty"
|
|
hostmakedepends="go pkg-config python3 wayland-devel wayland-protocols"
|
|
makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel
|
|
python3-devel wayland-devel wayland-protocols libcanberra-devel
|
|
openssl-devel dbus-devel libXcursor-devel libXrandr-devel libXi-devel
|
|
fontconfig-devel libxcb-devel lcms2-devel xxHash-devel"
|
|
depends="kitty-terminfo-${version}_${revision} kitty-shell-integration-${version}_${revision}
|
|
kitty-kitten-${version}_${revision}"
|
|
short_desc="Modern, hackable, featureful, OpenGL based terminal emulator"
|
|
maintainer="classabbyamp <void@placeviolette.net>"
|
|
license="GPL-3.0-only"
|
|
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=d4bb54f7bfc16e274d60326323555b63733915c3e32d2ef711fd9860404bd6f2
|
|
python_version=3
|
|
nopie_files="/usr/bin/kitten"
|
|
|
|
LDFLAGS+=" -Wl,-z,stack-size=2097152"
|
|
|
|
# TIOCSWINSZ on ppc overflows signed int, used in ioctl()
|
|
# glibc defines it with ulong, musl with int (should be harmless)
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
ppc*-musl) CFLAGS+=" -Wno-error=overflow";;
|
|
esac
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# cursed but this build system is a hot mess
|
|
hostmakedepends+=" $makedepends"
|
|
fi
|
|
|
|
do_build() {
|
|
local _cross_args
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# hot mess, continued
|
|
env CC="cc" CFLAGS="$XBPS_CFLAGS" LDFLAGS="$XBPS_LDFLAGS" python3 setup.py build \
|
|
--prefix="${DESTDIR}/usr" --update-check-interval=0 --verbose
|
|
python3 setup.py clean --clean-for-cross-compile
|
|
_cross_args=(--skip-code-generation)
|
|
fi
|
|
. /void-packages/common/environment/build-style/go.sh
|
|
python3 setup.py linux-package --prefix="${DESTDIR}/usr" --update-check-interval=0 --verbose "${_cross_args[@]}"
|
|
}
|
|
|
|
do_install() {
|
|
vsconf $(find ${DESTDIR}/usr/share/doc/kitty/html/_downloads/ -name "kitty.conf")
|
|
}
|
|
|
|
kitty-terminfo_package() {
|
|
short_desc+=" - terminfo data"
|
|
pkg_install() {
|
|
vmove usr/share/terminfo
|
|
}
|
|
}
|
|
|
|
kitty-shell-integration_package() {
|
|
short_desc+=" - shell integration scripts"
|
|
pkg_install() {
|
|
vmove usr/lib/kitty/shell-integration
|
|
}
|
|
}
|
|
|
|
kitty-kitten_package() {
|
|
short_desc+=" - kitten client"
|
|
pkg_install() {
|
|
vmove usr/bin/kitten
|
|
}
|
|
}
|