102 lines
3.0 KiB
RPMSpec
102 lines
3.0 KiB
RPMSpec
|
#
|
||
|
# spec file for package oculante
|
||
|
#
|
||
|
# Copyright (c) 2025 mantarimay
|
||
|
# Copyright (c) 2024 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/
|
||
|
#
|
||
|
|
||
|
|
||
|
%bcond_without test
|
||
|
%define force_gcc_version 13
|
||
|
%define appid io.github.woelper.Oculante
|
||
|
Name: oculante
|
||
|
Version: 0.9.2
|
||
|
Release: 0
|
||
|
Summary: A minimalistic crossplatform image viewer written in rust
|
||
|
License: MIT
|
||
|
URL: https://github.com/woelper/oculante
|
||
|
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
|
||
|
Source1: vendor.tar.zst
|
||
|
BuildRequires: appstream-glib
|
||
|
BuildRequires: cargo-packaging
|
||
|
BuildRequires: cmake
|
||
|
BuildRequires: desktop-file-utils
|
||
|
%if 0%{?suse_version} < 1600
|
||
|
BuildRequires: gcc%{?force_gcc_version}
|
||
|
BuildRequires: gcc%{?force_gcc_version}-c++
|
||
|
%else
|
||
|
BuildRequires: gcc-c++
|
||
|
%endif
|
||
|
BuildRequires: gtk3-devel
|
||
|
BuildRequires: libheif-devel
|
||
|
BuildRequires: nasm
|
||
|
ExclusiveArch: x86_64 aarch64
|
||
|
|
||
|
%description
|
||
|
Oculante's vision is to be a fast, unobtrusive, portable image viewer with
|
||
|
wide image format support, offering image analysis and basic editing
|
||
|
tools.
|
||
|
|
||
|
%prep
|
||
|
%autosetup -a1 -p1
|
||
|
|
||
|
echo 'StartupWMClass=oculante' >> res/flathub/%{appid}.desktop
|
||
|
sed -i 's|MimeType=|MimeType=image/jxl;image/vnd.adobe.photoshop;|' res/flathub/%{appid}.desktop
|
||
|
|
||
|
%build
|
||
|
%if 0%{?suse_version} < 1600
|
||
|
export CC="gcc-%{?force_gcc_version}"
|
||
|
export CXX="g++-%{?force_gcc_version}"
|
||
|
%endif
|
||
|
%{cargo_build} \
|
||
|
%if 0%{?suse_version} > 1600
|
||
|
--features 'heif' \
|
||
|
%endif
|
||
|
%{nil}
|
||
|
|
||
|
%install
|
||
|
install -Dpm755 target/release/%{name} -t %{buildroot}%{_bindir}
|
||
|
install -Dpm644 res/icons/icon.png \
|
||
|
%{buildroot}%{_datadir}/pixmaps/%{appid}.png
|
||
|
install -Dpm644 res/flathub/%{appid}.desktop -t \
|
||
|
%{buildroot}%{_datadir}/applications
|
||
|
install -Dpm644 res/flathub/%{appid}.metainfo.xml -t \
|
||
|
%{buildroot}%{_datadir}/metainfo
|
||
|
|
||
|
%check
|
||
|
%if %{with test}
|
||
|
%if 0%{?suse_version} < 1600
|
||
|
export CC="gcc-%{?force_gcc_version}"
|
||
|
export CXX="g++-%{?force_gcc_version}"
|
||
|
%endif
|
||
|
%{cargo_test} -- \
|
||
|
--skip=tests::net \
|
||
|
--skip=bench \
|
||
|
--skip=thumbnails::test_thumbs \
|
||
|
--skip=tests::flathub
|
||
|
%endif
|
||
|
appstream-util validate-relax --nonet \
|
||
|
%{buildroot}%{_datadir}/metainfo/%{appid}.metainfo.xml
|
||
|
desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||
|
|
||
|
%files
|
||
|
%license LICENSE*
|
||
|
%doc README* CHANGELOG.md
|
||
|
%{_bindir}/%{name}
|
||
|
%{_datadir}/pixmaps/%{appid}.png
|
||
|
%{_datadir}/applications/%{appid}.desktop
|
||
|
%{_datadir}/metainfo
|
||
|
|
||
|
%changelog
|