Fix build failure (directories not owned by a package) OBS-URL: https://build.opensuse.org/request/show/1144062 OBS-URL: https://build.opensuse.org/package/show/electronics/qelectrotech?expand=0&rev=20
92 lines
2.9 KiB
RPMSpec
92 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package qelectrotech
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
# Copyright (c) 2021 Asterios Dramis <asterios.dramis@gmail.com>.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define src 0.9
|
|
Name: qelectrotech
|
|
Version: 0.90
|
|
Release: 0
|
|
Summary: Application to Design Electric Diagrams
|
|
License: CC-BY-3.0 AND GPL-2.0-or-later
|
|
Group: Productivity/Scientific/Electronics
|
|
URL: https://qelectrotech.org/
|
|
Source0: https://github.com/qelectrotech/qelectrotech-source-mirror/archive/refs/tags/%{src}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: fdupes
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: kcoreaddons-devel
|
|
BuildRequires: kwidgetsaddons-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: shared-mime-info
|
|
BuildRequires: sqlite-devel >= 3.0
|
|
BuildRequires: update-desktop-files
|
|
BuildRequires: pkgconfig(Qt5Concurrent)
|
|
BuildRequires: pkgconfig(Qt5Network)
|
|
BuildRequires: pkgconfig(Qt5PrintSupport)
|
|
BuildRequires: pkgconfig(Qt5Sql)
|
|
BuildRequires: pkgconfig(Qt5Svg)
|
|
BuildRequires: pkgconfig(Qt5Widgets)
|
|
BuildRequires: pkgconfig(Qt5Xml)
|
|
|
|
%description
|
|
QElectroTech is a Qt5 application to design electric diagrams. It uses XML
|
|
files for elements and diagrams, and includes both a diagram editor and an
|
|
element editor.
|
|
|
|
%prep
|
|
%setup -q -n qelectrotech-source-mirror-%{src}
|
|
|
|
# Fix compilation and installation paths
|
|
sed -e s,%{_prefix}/local/,%{_prefix}/, \
|
|
-e /QET_LICENSE_PATH/s,'doc/,'share/doc/packages/, \
|
|
-e /QET_MIME/s,../,, \
|
|
-e /QET_MAN_PATH/s,'man/','share/man/', \
|
|
-e /DEFINES/s,GIT_COMMIT_SHA.*,GIT_COMMIT_SHA="", \
|
|
-i qelectrotech.pro
|
|
|
|
%build
|
|
%global optflags ${optflags} -Wno-error=return-type
|
|
%qmake5
|
|
%make_build
|
|
|
|
%install
|
|
%qmake5_install
|
|
|
|
# Fix desktop file
|
|
%suse_update_desktop_file -r qelectrotech "Education;Engineering"
|
|
|
|
%fdupes %{buildroot}/%{_prefix}
|
|
|
|
%find_lang %{name} --with-qt --with-man --all-name
|
|
|
|
%files -f %{name}.lang
|
|
%doc CREDIT ChangeLog README README.md
|
|
%license %{_defaultdocdir}/%{name}/ELEMENTS.LICENSE
|
|
%license %{_defaultdocdir}/%{name}/LICENSE
|
|
%{_bindir}/qelectrotech
|
|
%{_datadir}/appdata/qelectrotech.appdata.xml
|
|
%{_datadir}/applications/qelectrotech.desktop
|
|
%{_datadir}/icons/hicolor/*/*/*.png
|
|
%dir %{_mandir}/be
|
|
%dir %{_mandir}/fr.ISO8859-1
|
|
%dir %{_mandir}/fr.UTF-8
|
|
%{_mandir}/man1/qelectrotech.1%{?ext_man}
|
|
%{_datadir}/mime/packages/qelectrotech.xml
|
|
%{_datadir}/qelectrotech/
|
|
|
|
%changelog
|