package created using the webbuild interface [release 0.16.0-1mamba;Mon Nov 09 2020]

This commit is contained in:
Silvan Calarco 2024-01-06 06:35:00 +01:00
parent 78af7d8a9b
commit f10c56a176
2 changed files with 65 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# lxqt-admin
two GUI tools to adjust settings of the operating system LXQt is running on.

63
lxqt-admin.spec Normal file
View File

@ -0,0 +1,63 @@
Name: lxqt-admin
Version: 0.16.0
Release: 1mamba
Summary: Two GUI tools to adjust settings of the operating system LXQt is running on
Group: Graphical Destkop/Applications/Configuration
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/lxqt/lxqt-admin
Source: https://github.com/lxqt/lxqt-admin.git/%{version}/lxqt-admin-%{version}.tar.bz2
License: LGPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ldconfig
BuildRequires: libgcc
BuildRequires: libglib-devel
BuildRequires: libkwindowsystem-devel
BuildRequires: liblxqt-devel
BuildRequires: libqt5-devel
BuildRequires: libqtxdg-devel
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
two GUI tools to adjust settings of the operating system LXQt is running on.
%debug_package
%prep
%setup -q
%build
%cmake -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
find %{buildroot}%{_datadir}/*/translations/ -name *.qm | \
while read line; do
bn=`echo ${line}|cut -d_ -f2-3`
echo "%lang(${bn/.*}) ${line/*-root}" >> %{name}.lang
done
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files -f %{name}.lang
%defattr(-,root,root)
%{_bindir}/lxqt-admin-time
%{_bindir}/lxqt-admin-user
%{_bindir}/lxqt-admin-user-helper
%{_datadir}/applications/lxqt-admin-time.desktop
%{_datadir}/applications/lxqt-admin-user.desktop
%{_datadir}/polkit-1/actions/org.lxqt.lxqt-admin-user.policy
%doc AUTHORS COPYING
%changelog
* Mon Nov 09 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 0.16.0-1mamba
- package created using the webbuild interface