package created using the webbuild interface [release 1.6.0-1mamba;Fri Mar 13 2020]

This commit is contained in:
Silvan Calarco 2024-01-05 19:30:02 +01:00
parent afaadfd776
commit 8294291767
2 changed files with 87 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# wpebackend-fdo
fdo backend for libwpe.

85
wpebackend-fdo.spec Normal file
View File

@ -0,0 +1,85 @@
Name: wpebackend-fdo
Version: 1.6.0
Release: 1mamba
Summary: fdo backend for libwpe
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/Igalia/WPEBackend-fdo.git
## GITSOURCE https://github.com/Igalia/WPEBackend-fdo.git 1.6.0
Source: https://github.com/Igalia/WPEBackend-fdo.git/%{version}/WPEBackend-fdo-%{version}.tar.bz2
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ldconfig
BuildRequires: libGL-devel
BuildRequires: libgcc
BuildRequires: libglib-devel
BuildRequires: libstdc++6-devel
BuildRequires: libwayland-devel
BuildRequires: libwayland-egl-devel
BuildRequires: libwpe-devel
BuildRequires: libxkbcommon-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
fdo backend for libwpe.
%package -n lib%{name}
Group: System/Libraries
Summary: fdo backend for libwpe.
%description -n lib%{name}
fdo backend for libwpe.
%package -n lib%{name}-devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description -n lib%{name}-devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q -n WPEBackend-fdo-%{version}
%build
%cmake -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -n lib%{name} -p /sbin/ldconfig
%postun -n lib%{name} -p /sbin/ldconfig
%files -n lib%{name}
%defattr(-,root,root)
%{_libdir}/libWPEBackend-fdo-1.0.so.*
%doc COPYING
%files -n lib%{name}-devel
%defattr(-,root,root)
%dir %{_includedir}/wpe-fdo-1.0
%dir %{_includedir}/wpe-fdo-1.0/wpe
%{_includedir}/wpe-fdo-1.0/wpe/*.h
%dir %{_includedir}/wpe-fdo-1.0/wpe/extensions
%{_includedir}/wpe-fdo-1.0/wpe/extensions/*.h
%{_libdir}/libWPEBackend-fdo-1.0.so
%{_libdir}/pkgconfig/wpebackend-fdo-1.0.pc
%doc NEWS
%changelog
* Fri Mar 13 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.0-1mamba
- package created using the webbuild interface