File eyedropper.spec of Package eyedropper
#
# spec file for package eyedropper
#
# Copyright (c) 2025 mantarimay
# 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/
#
%define lname com.github.finefindus.eyedropper
%bcond_with warp
%bcond_with test
%define sname blueprint-compiler
%define sver 0.8.1
Name: eyedropper
Version: 2.1.0
Release: 0
Summary: Pick and format colors
License: GPL-3.0-or-later
URL: https://github.com/FineFindus/eyedropper
Source0: %{url}/releases/download/v%{version}/%{name}-%{version}.tar.xz
%if %{with warp}
Source1: https://gitlab.gnome.org/jwestman/%{sname}/-/archive/v%{sver}/%{sname}-v%{sver}.tar.bz2
BuildRequires: python3-gobject
Provides: bundled(blueprint-compiler)
%else
BuildRequires: blueprint-compiler
%endif
BuildRequires: appstream-glib
BuildRequires: cargo-packaging
BuildRequires: meson
BuildRequires: pkgconfig(gtk4)
BuildRequires: pkgconfig(libadwaita-1) >= 1.7.0
BuildRequires: desktop-file-utils
%description
An application to pick and format colors.
Features:
- Pick a Color
- Enter a color in Hex-Format
- Parse RGB/RGBA/ARGB Hex-Colors
- View colors in formats
- Customize which formats appear as well as their order
- Generate a palette of different shades
%lang_package
%prep
%autosetup -p1
%if %{with warp}
mkdir subprojects/%{sname}
tar -xf %{SOURCE1} --strip-components 1 -C subprojects/%{sname}
%endif
%build
%meson
%meson_build
%install
%meson_install
%find_lang %{name} %{?no_lang_C}
%if %{with test}
%check
%meson_test
%endif
%files
%license LICENSE
%doc README.md CHANGELOG.md
%{_bindir}/%{name}
%{_datadir}/applications/%{lname}.desktop
%{_datadir}/%{name}/
%{_datadir}/glib-2.0/schemas/%{lname}.gschema.xml
%{_datadir}/dbus-1/services/%{lname}.SearchProvider.service
%dir %{_datadir}/gnome-shell/
%dir %{_datadir}/gnome-shell/search-providers
%{_datadir}/gnome-shell/search-providers/%{lname}.search-provider.ini
%{_datadir}/icons/hicolor/*/apps/%{lname}*.svg
%{_datadir}/metainfo/%{lname}.metainfo.xml
%files lang -f %{name}.lang
%changelog