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

This commit is contained in:
Silvan Calarco 2024-01-05 21:01:33 +01:00
parent a9d1d464b1
commit 5b3bff12af
2 changed files with 52 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# bubblewrap # bubblewrap
Unprivileged sandboxing tool.

50
bubblewrap.spec Normal file
View File

@ -0,0 +1,50 @@
Name: bubblewrap
Version: 0.4.0
Release: 1mamba
Summary: Unprivileged sandboxing tool
Group: System/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/containers/bubblewrap.git
## GITSOURCE https://github.com/containers/bubblewrap.git v0.4.0
Source: https://github.com/containers/bubblewrap.git/v%{version}/bubblewrap-%{version}.tar.bz2
License: LGPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ldconfig
BuildRequires: libcap-devel
BuildRequires: libselinux-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Unprivileged sandboxing tool.
%debug_package
%prep
%setup -q
./autogen.sh
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/bwrap
%{_datadir}/bash-completion/completions/bwrap
%{_mandir}/man1/bwrap.1*
%doc COPYING LICENSE
%changelog
* Fri Mar 13 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.0-1mamba
- package created using the webbuild interface