package created using the webbuild interface [release 1.0.79-1mamba;Wed Sep 18 2024]

This commit is contained in:
Silvan Calarco 2024-09-18 21:51:50 +02:00
parent fb54679410
commit 44dc07c83a
2 changed files with 60 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libglibutil
Library of glib utilities.

58
libglibutil.spec Normal file
View File

@ -0,0 +1,58 @@
Name: libglibutil
Version: 1.0.79
Release: 1mamba
Summary: Library of glib utilities
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/sailfishos/libglibutil
Source: https://github.com/sailfishos/libglibutil.git/%{version}/libglibutil-%{version}.tar.bz2
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libglib-devel
## AUTOBUILDREQ-END
%description
Library of glib utilities.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q
%build
%make STRIP=/bin/true
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall install-dev LIBDIR=%{_libdir}
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_libdir}/libglibutil.so.*
%doc LICENSE
%files devel
%defattr(-,root,root)
%dir %{_includedir}/gutil
%{_includedir}/gutil/*.h
%{_libdir}/libglibutil.so
%{_libdir}/pkgconfig/libglibutil.pc
%doc README
%changelog
* Wed Sep 18 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.79-1mamba
- package created using the webbuild interface