package created using the webbuild interface [release 0.4.39-1mamba;Mon Sep 12 2022]

This commit is contained in:
Silvan Calarco 2024-01-06 06:16:07 +01:00
parent b7d90c0295
commit df6c912ffa
2 changed files with 71 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libzen
Shared library for libmediainfo and mediainfo.

69
libzen.spec Normal file
View File

@ -0,0 +1,69 @@
Name: libzen
Version: 0.4.39
Release: 1mamba
Summary: shared library for libmediainfo and mediainfo
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://mediaarea.net
Source: https://mediaarea.net/download/source/libzen/%{version}/libzen_%{version}.tar.bz2
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
%description
Shared library for libmediainfo and mediainfo.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q -c
cd ZenLib/Project/GNU/Library
./autogen.sh
%build
cd ZenLib/Project/GNU/Library
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
cd ZenLib/Project/GNU/Library
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libzen.so.*
%doc ZenLib/License.txt
%files devel
%defattr(-,root,root)
%dir %{_includedir}/ZenLib
%{_includedir}/ZenLib/*
%{_libdir}/libzen.so
%{_libdir}/pkgconfig/libzen.pc
%changelog
* Mon Sep 12 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.39-1mamba
- package created using the webbuild interface