void-packages/srcpkgs/kitty/template
2018-05-25 02:27:12 -04:00

41 lines
1.2 KiB
Bash

# Template file for 'kitty'
pkgname=kitty
version=0.10.1
revision=1
python_version=3
hostmakedepends="ncurses pkg-config python3-devel wayland-devel wayland-protocols"
makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel
python3-devel wayland-devel wayland-protocols"
depends="kitty-terminfo"
conf_files="/etc/kitty/kitty.conf"
short_desc="Modern, hackable, featureful, OpenGL based terminal emulator"
maintainer="Julio Galvan <juliogalvan@protonmail.com>"
license="GPL-3.0-or-later"
homepage="https://github.com/kovidgoyal/kitty"
distfiles="https://github.com/kovidgoyal/kitty/archive/v${version}.tar.gz"
checksum=ef22208497a76e2f88ebe56c176e4608f049b056252cf1bf122c9c1ec711cfa6
do_build() {
if [ -n "$CROSS_BUILD" ]; then
export CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python3.6m"
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() {
vmkdir etc/kitty
cp ${DESTDIR}/usr/lib/kitty/kitty/kitty.conf ${DESTDIR}/etc/kitty/
}
kitty-terminfo_package() {
short_desc+=" - terminfo data"
noarch=yes
pkg_install() {
vmove usr/share/terminfo
}
}