File espanso.spec of Package espanso
#
# spec file for package espanso
#
# Copyright (c) 2025 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/
#
%define __rustflags -Clink-arg=-I/usr/include/libxkbcommon
Name: espanso
Version: 2.2.3
Release: 0
Summary: A cross-platform Text Expander written in Rust
License: GPL-3.0-only
URL: https://github.com/federico-terzi/espanso
Source0: %{name}-%{version}.tar.gz
Source1: vendor.tar.zst
BuildRequires: cargo
BuildRequires: cargo-packaging
BuildRequires: gcc-c++
BuildRequires: libXtst-devel
BuildRequires: libnotify4
BuildRequires: libopenssl-devel
BuildRequires: libxkbcommon-devel
BuildRequires: libxkbcommon-x11-devel
BuildRequires: wxGTK3-devel >= 3.0
BuildRequires: xdotool-devel
%if 0%{?suse_version} < 1600
BuildRequires: libstdc++6-devel-gcc13
%endif
Requires: xclip
Requires: xdotool
%description
A cross-platform Text Expander written in Rust. espanso detects when you type a
keyword and replaces it while you're typing.
%prep
%autosetup -a 1 -p 1
%build
export CFLAGS="${optflags} -I/usr/include/libxkbcommon"
export CXXFLAGS="${optflags} -I/usr/include/libxkbcommon"
%{cargo_build}
%install
install -Dm0755 %{_builddir}/%{name}-%{version}/target/release/%{name} %{buildroot}%{_bindir}/%{name}
%files
%license LICENSE
%doc README.md SECURITY.md
%{_bindir}/%{name}
%changelog