package created using the webbuild interface [release 0.15.0-1mamba;Sat Oct 03 2020]

This commit is contained in:
Silvan Calarco 2024-01-06 06:36:10 +01:00
parent 597100a872
commit c9092e52ed
2 changed files with 63 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# lxqt-notificationd # lxqt-notificationd
lxqt-notificationd is LXQt's implementation of a daemon according to the Desktop Notifications Specification.

61
lxqt-notificationd.spec Normal file
View File

@ -0,0 +1,61 @@
Name: lxqt-notificationd
Version: 0.15.0
Release: 1mamba
Summary: LXQt's implementation of a daemon according to the Desktop Notifications Specification
Group: Graphical Desktop/Applications/Environment
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/lxqt/lxqt-notificationd
Source: https://github.com/lxqt/lxqt-notificationd.git/%{version}/lxqt-notificationd-%{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
lxqt-notificationd is LXQt's implementation of a daemon according to the Desktop Notifications Specification.
%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)
%{_sysconfdir}/xdg/autostart/lxqt-notifications.desktop
%{_bindir}/lxqt-config-notificationd
%{_bindir}/lxqt-notificationd
%{_datadir}/applications/lxqt-config-notificationd.desktop
%doc AUTHORS LICENSE
%changelog
* Sat Oct 03 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 0.15.0-1mamba
- package created using the webbuild interface