[packages/glycin] - build and package also libraries
qboosh
qboosh at pld-linux.org
Sun Feb 2 21:26:55 CET 2025
commit 88c72775b9384394ef0765f234c79fcab4e4d793
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Sun Feb 2 21:19:31 2025 +0100
- build and package also libraries
glycin.spec | 119 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 111 insertions(+), 8 deletions(-)
---
diff --git a/glycin.spec b/glycin.spec
index cace224..e3469e9 100644
--- a/glycin.spec
+++ b/glycin.spec
@@ -1,10 +1,11 @@
-Summary: Sandboxed image rendering
-Summary(pl.UTF-8): Renderowanie obrazów w piaskownicy
+# TODO: introspection, vapi, capi_docs (there are some meson issues with fake library stubs)
+Summary: Sandboxed and extendable image rendering
+Summary(pl.UTF-8): Rozszerzalne renderowanie obrazów w piaskownicy
Name: glycin
Version: 1.1.4
Release: 0.1
License: MPL v2.0 or LGPL v2.1+
-Group: Applications/Graphics
+Group: Libraries
Source0: https://download.gnome.org/sources/glycin/1.1/%{name}-%{version}.tar.xz
# Source0-md5: 4faccd31dbe4c2b223784ef20918fb74
URL: https://gitlab.gnome.org/sophie-h/glycin
@@ -13,8 +14,10 @@ BuildRequires: cargo
BuildRequires: glib2-devel >= 1:2.60
BuildRequires: gdk-pixbuf2-devel >= 2.0
BuildRequires: gtk4-devel >= 4.12.0
+BuildRequires: lcms2-devel >= 2.14
BuildRequires: libheif-devel >= 1.14.2
BuildRequires: libjxl-devel >= 0.8.2
+BuildRequires: libseccomp-devel >= 2.5.0
BuildRequires: libxml2-devel >= 2.0
BuildRequires: meson >= 1.2
BuildRequires: ninja >= 1.5
@@ -22,10 +25,9 @@ BuildRequires: pango-devel
BuildRequires: pkgconfig
BuildRequires: rpmbuild(macros) >= 1.736
BuildRequires: rust >= 1.77
-# for libs
-#BuildRequires: lcms2-devel >= 2.14
-#BuildRequires: libseccomp-devel >= 2.5.0
-Obsoletes: glycin-loaders < 1.1
+Requires: glib2 >= 1:2.60
+Requires: lcms2 >= 2.14
+Requires: libseccomp >= 2.5.0
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
%define _debugsource_packages 0
@@ -39,6 +41,71 @@ Glycin pozwala dekodować obrazy do obiektów gdk::Texture oraz
wydobywać metadane z obrazów. Dekodowanie dzieje się w modułach
wczytujących działających w piaskownicy.
+%package devel
+Summary: Header file for glycin library
+Summary(pl.UTF-8): Plik nagłówkowy biblioteki glycin
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+Requires: glib2-devel >= 1:2.60
+Requires: lcms2-devel >= 2.14
+Requires: libseccomp-devel >= 2.5.0
+
+%description devel
+Header file for glycin library.
+
+%description devel -l pl.UTF-8
+Plik nagłówkowy biblioteki glycin.
+
+%package static
+Summary: Static glycin library
+Summary(pl.UTF-8): Statyczna biblioteka glycin
+Group: Development/Libraries
+Requires: %{name}-devel = %{version}-%{release}
+
+%description static
+Static glycin library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka glycin.
+
+%package gtk4
+Summary: Sandboxed and extendable image decoding for GTK 4
+Summary(pl.UTF-8): Rozszerzalne renderowanie obrazów w piaskownicy dla GTK 4
+Group: Libraries
+Requires: gtk4 >= 4.12.0
+
+%description gtk4
+Sandboxed and extendable image decoding for GTK 4.
+
+%description gtk4 -l pl.UTF-8
+Rozszerzalne renderowanie obrazów w piaskownicy dla GTK 4.
+
+%package gtk4-devel
+Summary: Header file for glycin-gtk4 library
+Summary(pl.UTF-8): Plik nagłówkowy biblioteki glycin-gtk4
+Group: Development/Libraries
+Requires: %{name}-devel = %{version}-%{release}
+Requires: %{name}-gtk4 = %{version}-%{release}
+Requires: gtk4-devel >= 4.12.0
+
+%description gtk4-devel
+Header file for glycin-gtk4 library.
+
+%description gtk4-devel -l pl.UTF-8
+Plik nagłówkowy biblioteki glycin-gtk4.
+
+%package gtk4-static
+Summary: Static glycin-gtk4 library
+Summary(pl.UTF-8): Statyczna biblioteka glycin-gtk4
+Group: Development/Libraries
+Requires: %{name}-gtk4-devel = %{version}-%{release}
+
+%description gtk4-static
+Static glycin-gtk4 library.
+
+%description gtk4-static -l pl.UTF-8
+Statyczna biblioteka glycin-gtk4.
+
%package loaders
Summary: Sandboxed image rendering
Summary(pl.UTF-8): Renderowanie obrazów w piaskownicy
@@ -70,7 +137,8 @@ wczytujących działających w piaskownicy.
export PKG_CONFIG_ALLOW_CROSS=1
%endif
%meson build \
- -Dlibglycin=false
+ -Dintrospection=false \
+ -Dvapi=false
%ninja_build -C build
@@ -85,6 +153,41 @@ export PKG_CONFIG_ALLOW_CROSS=1
%clean
rm -rf $RPM_BUILD_ROOT
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%post gtk4 -p /sbin/ldconfig
+%postun gtk4 -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc NEWS LICENSE README.md
+%attr(755,root,root) %{_libdir}/libglycin-1.so.0
+
+%files devel
+%defattr(644,root,root,755)
+%{_libdir}/libglycin-1.so
+%{_includedir}/glycin-1
+%{_pkgconfigdir}/glycin-1.pc
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libglycin-1.a
+
+%files gtk4
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libglycin-gtk4-1.so.0
+%{_pkgconfigdir}/glycin-gtk4-1.pc
+
+%files gtk4-devel
+%defattr(644,root,root,755)
+%{_libdir}/libglycin-gtk4-1.so
+%{_includedir}/glycin-gtk4-1
+
+%files gtk4-static
+%defattr(644,root,root,755)
+%{_libdir}/libglycin-gtk4-1.a
+
%files loaders
%defattr(644,root,root,755)
%doc NEWS LICENSE README.md
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/glycin.git/commitdiff/88c72775b9384394ef0765f234c79fcab4e4d793
More information about the pld-cvs-commit
mailing list