forked from pool/zutty
- Update to 0.14: * Update repo urls (846c013) * Correct modifyOtherKeys=2 behaviour for certain Shift-modified keys (5331995) * Upgrade WAF to version 2.0.25 (8db89ee) * Add mouse protocol encoding for buttons 6-7 (wheel left/right) and 8-11 (310d913) * Ignore several more esoteric keysyms (db2f40a) * Ignore, but do not prematurely cancel sequence on bad parameter value (bc6e089) - lint spec with spec-cleaner OBS-URL: https://build.opensuse.org/request/show/1073360 OBS-URL: https://build.opensuse.org/package/show/X11:terminals/zutty?expand=0&rev=7
63 lines
2.0 KiB
RPMSpec
63 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package zutty
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: zutty
|
|
Version: 0.14
|
|
Release: 0
|
|
Summary: Terminal program with GLES renderer and low latency
|
|
License: GPL-3.0-or-later
|
|
Group: System/X11/Terminals
|
|
URL: https://tomscii.sig7.se/zutty/
|
|
#Git-Clone: https://github.com/tomscii/zutty
|
|
#Git-Clone: https://github.com/tomscii/zutty.wiki
|
|
Source: https://github.com/tomscii/zutty/archive/refs/tags/%{version}.tar.gz#/zutty-%version.tar.gz
|
|
Source3: FAQ.md
|
|
# Note: Tumbleweed contains waf, but Leap does not (yet), so we use python3 and add waf to the sources.
|
|
BuildRequires: Mesa-libEGL-devel
|
|
BuildRequires: Mesa-libGLESv3-devel
|
|
BuildRequires: freetype2-devel
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libXmu-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: python3
|
|
|
|
%description
|
|
An X terminal emulator rendering through OpenGL ES shaders.
|
|
It has good input latency and VTxxx emulation over most other
|
|
terminals, ranging second after xterm (as of 2022).
|
|
It uses FreeType, but does not support fontconfig, thus won't find
|
|
fonts by their usual names. (See FAQ for details.)
|
|
|
|
%prep
|
|
%autosetup
|
|
cp -a "%{_sourcedir}/FAQ.md" .
|
|
|
|
%build
|
|
CXXFLAGS="%{?optflags}" LDFLAGS="%{?build_ldflags}" ./waf configure --prefix="%{_prefix}" --no-werror
|
|
./waf
|
|
|
|
%install
|
|
./waf install --destdir=%{buildroot}
|
|
|
|
%files
|
|
%{_bindir}/zutty
|
|
%doc FAQ.md
|
|
%license LICENSE
|
|
|
|
%changelog
|