package created using the webbuild interface [release 3.30.1-1mamba;Tue Oct 09 2018]

This commit is contained in:
Silvan Calarco 2024-01-06 04:04:29 +01:00
parent d7d2992d13
commit 59e7668c2f
2 changed files with 77 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libdazzle
The libdazzle library is a companion library to GObject and Gtk+..

75
libdazzle.spec Normal file
View File

@ -0,0 +1,75 @@
Name: libdazzle
Version: 3.30.1
Release: 1mamba
Summary: A companion library to GObject and Gtk+
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://www.gnome.org
Source: ftp://ftp.gnome.org/pub/gnome/sources/libdazzle/3.30/libdazzle-%{version}.tar.xz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libcairo-devel
BuildRequires: libgdk-pixbuf-devel
BuildRequires: libglib-devel
BuildRequires: libgtk-devel
BuildRequires: libpango-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
The libdazzle library is a companion library to GObject and Gtk+..
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
## note: you can add this requirement if .pc files are provided by this package
#Requires: pkg-config
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q
%build
%meson
%meson_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%meson_install
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libdazzle-1.0.so.*
%{_libdir}/girepository-1.0/Dazzle-1.0.typelib
%doc AUTHORS COPYING
%files devel
%defattr(-,root,root)
%{_bindir}/dazzle-list-counters
%dir %{_includedir}/libdazzle-1.0
%{_includedir}/libdazzle-1.0/*
%{_libdir}/libdazzle-1.0.so
%{_libdir}/pkgconfig/libdazzle-1.0.pc
%{_datadir}/gir-1.0/Dazzle-1.0.gir
%{_datadir}/vala/vapi/libdazzle-1.0.deps
%{_datadir}/vala/vapi/libdazzle-1.0.vapi
%doc NEWS README.md
%changelog
* Tue Oct 09 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 3.30.1-1mamba
- package created using the webbuild interface