26 lines
903 B
Bash
26 lines
903 B
Bash
# Template file for 'zutty'
|
|
pkgname=zutty
|
|
version=0.14
|
|
revision=1
|
|
build_style=waf3
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libglvnd-devel freetype-devel libXmu-devel"
|
|
depends="font-misc-misc"
|
|
short_desc="X terminal emulator rendering through OpenGL ES Compute Shaders"
|
|
maintainer="Javier Caballero <jacallo@protonmail.com>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://tomscii.sig7.se/zutty"
|
|
distfiles="https://github.com/tomscii/zutty/archive/refs/tags/${version}.tar.gz"
|
|
checksum=6de17d6b7a3fe6991df30ba1ca7d6a08e605369cf92247deeb19758379b5af2f
|
|
|
|
post_install() {
|
|
# Copy icons
|
|
vinstall icons/zutty.svg 644 usr/share/icons/hicolor/scalable/apps
|
|
for _res in 16 32 48 64 128; do
|
|
vinstall icons/zutty_${_res}x${_res}.png 644 usr/share/icons/hicolor/${_res}x${_res}/apps zutty.png
|
|
done
|
|
# Copy desktop entry
|
|
vmkdir usr/share/applications/
|
|
vinstall icons/zutty.desktop 644 usr/share/applications
|
|
}
|