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

This commit is contained in:
Silvan Calarco 2024-09-18 21:53:01 +02:00
parent 1f9597d53c
commit 3fc095f639
2 changed files with 63 additions and 0 deletions

View File

@ -1,2 +1,3 @@
# waydroid # waydroid
Waydroid uses a container-based approach to boot a full Android system on a regular GNU/Linux system like Ubuntu.

62
waydroid.spec Normal file
View File

@ -0,0 +1,62 @@
Name: waydroid
Version: 1.4.3
Release: 1mamba
Summary: A container-based approach to boot a full Android system on a regular GNU/Linux system
Group: Applications/Emulators
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://waydro.id/
Source: https://github.com/waydroid/waydroid.git/%{version}/waydroid-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
Requires: dnsmasq
Requires: lxc
Requires: nftables
Requires: pygobject-py3
Requires: python-dbus-py3
Requires: python-gbinder-py3
%description
Waydroid uses a container-based approach to boot a full Android system on a regular GNU/Linux system like Ubuntu.
#% debug_package
%prep
%setup -q
%build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall USE_NFTABLES=1
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_sysconfdir}/xdg/menus/applications-merged/waydroid.menu
%{_bindir}/waydroid
%{_unitdir}/waydroid-container.service
%{_datadir}/applications/Waydroid.desktop
%{_datadir}/applications/waydroid.app.install.desktop
%{_datadir}/applications/waydroid.market.desktop
%{_metainfodir}/id.waydro.waydroid.metainfo.xml
%{_datadir}/dbus-1/system-services/id.waydro.Container.service
%{_datadir}/dbus-1/system.d/id.waydro.Container.conf
%{_datadir}/desktop-directories/waydroid.directory
%{_datadir}/polkit-1/actions/id.waydro.Container.policy
%dir %{_prefix}/lib/waydroid
%dir %{_prefix}/lib/waydroid/data
%{_prefix}/lib/waydroid/data/*
%dir %{_prefix}/lib/waydroid/tools
%{_prefix}/lib/waydroid/tools/*
%{_prefix}/lib/waydroid/waydroid.py
%{_datadir}/icons/hicolor/512x512/apps/waydroid.png
%doc LICENSE
%changelog
* Wed Sep 18 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.3-1mamba
- package created using the webbuild interface