19 lines
586 B
Plaintext
19 lines
586 B
Plaintext
# Description: GPU-accelerated terminal emulator written in Go
|
|
# URL: https://github.com/kovidgoyal/kitty
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: go lcms2 xorg-libxcursor libxkbcommon xorg-libxinerama libcanberra librsync
|
|
# Optional: imagemagick python3-pygments
|
|
|
|
name=kitty
|
|
version=0.29.2
|
|
release=1
|
|
source=(https://github.com/kovidgoyal/$name/releases/download/v$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
sed -e 's;python3 ;/usr/bin/python3 ;' -i Makefile
|
|
make linux-package
|
|
rm -rf linux-package/share/doc
|
|
mv linux-package $PKG/usr
|
|
}
|