diff --git a/README.md b/README.md index 0cfbe91..5865edd 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # lxqt-about +lxqt-about is a dialogue window providing information about LXQt and the system it's running on. + diff --git a/lxqt-about.spec b/lxqt-about.spec new file mode 100644 index 0000000..ecfcfa4 --- /dev/null +++ b/lxqt-about.spec @@ -0,0 +1,59 @@ +Name: lxqt-about +Version: 0.15.0 +Release: 1mamba +Summary: A dialogue window providing information about LXQt and the system it's running on +Group: Graphical Desktop/Applications/Enviroment +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/lxqt/lxqt-about +Source: https://github.com/lxqt/lxqt-about.git/%{version}/lxqt-about-%{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-about is a dialogue window providing information about LXQt and the system it's 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-about +%{_datadir}/applications/lxqt-about.desktop +%doc AUTHORS COPYING + +%changelog +* Sat Oct 03 2020 Silvan Calarco 0.15.0-1mamba +- package created using the webbuild interface