61 lines
1.6 KiB
RPMSpec
61 lines
1.6 KiB
RPMSpec
|
Name: qterminal
|
||
|
Version: 0.15.0
|
||
|
Release: 1mamba
|
||
|
Summary: A lightweight Qt terminal emulator based on QTermWidget
|
||
|
Group: Graphical Desktop/Applications/Utilities
|
||
|
Vendor: openmamba
|
||
|
Distribution: openmamba
|
||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||
|
URL: https://github.com/lxqt/qterminal
|
||
|
Source: https://github.com/lxqt/qterminal.git/%{version}/qterminal-%{version}.tar.bz2
|
||
|
License: GPL
|
||
|
## AUTOBUILDREQ-BEGIN
|
||
|
BuildRequires: glibc-devel
|
||
|
BuildRequires: ldconfig
|
||
|
BuildRequires: libX11-devel
|
||
|
BuildRequires: libgcc
|
||
|
BuildRequires: libqt5-devel
|
||
|
BuildRequires: libqtermwidget-devel
|
||
|
BuildRequires: libstdc++6-devel
|
||
|
## AUTOBUILDREQ-END
|
||
|
BuildRequires: cmake
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||
|
|
||
|
%description
|
||
|
QTerminal is a lightweight Qt terminal emulator based on QTermWidget.
|
||
|
|
||
|
%debug_package
|
||
|
|
||
|
%prep
|
||
|
%setup -q
|
||
|
|
||
|
%build
|
||
|
%cmake -d build
|
||
|
%make
|
||
|
|
||
|
%install
|
||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||
|
%makeinstall -C build
|
||
|
|
||
|
find %{buildroot}/usr/share/*/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}/qterminal
|
||
|
%{_datadir}/appdata/qterminal.appdata.xml
|
||
|
%{_datadir}/applications/qterminal.desktop
|
||
|
%{_datadir}/applications/qterminal_drop.desktop
|
||
|
%{_datadir}/icons/hicolor/64x64/apps/qterminal.png
|
||
|
%doc AUTHORS LICENSE
|
||
|
|
||
|
%changelog
|
||
|
* Fri Oct 02 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 0.15.0-1mamba
|
||
|
- package created using the webbuild interface
|