3a210b063e
Update to version 2.16 OBS-URL: https://build.opensuse.org/request/show/402809 OBS-URL: https://build.opensuse.org/package/show/graphics/gpxsee?expand=0&rev=3
92 lines
2.6 KiB
RPMSpec
92 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package gpxsee
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
# See also http://en.opensuse.org/openSUSE:Specfile_guidelines
|
|
|
|
Name: gpxsee
|
|
Version: 2.16
|
|
Release: 1
|
|
Summary: GPX visualizing and analyzing tool
|
|
License: GPL-3.0
|
|
Group: Productivity/Graphics/Visualization
|
|
Url: http://tumic.wz.cz/gpxsee
|
|
Source0: GPXSee-%{version}.tar.gz
|
|
Source1: gpxsee.desktop
|
|
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: make
|
|
%if 0%{?fedora} || 0%{?rhel_version} || 0%{?centos_version}
|
|
BuildRequires: libqt4-devel
|
|
%else
|
|
BuildRequires: libQt5Core-devel
|
|
BuildRequires: libQt5Gui-devel
|
|
BuildRequires: libQt5Widgets-devel
|
|
BuildRequires: libQt5Network-devel
|
|
BuildRequires: libQt5PrintSupport-devel
|
|
BuildRequires: libqt5-linguist
|
|
%endif
|
|
|
|
|
|
%description
|
|
GPXSee is a Qt based tool for visualizing and analyzing GPX files.
|
|
|
|
%prep
|
|
%setup -q -n GPXSee-%{version}
|
|
|
|
%build
|
|
%if 0%{?fedora} || 0%{?rhel_version} || 0%{?centos_version}
|
|
lrelease-qt4 gpxsee.pro
|
|
qmake-qt4 gpxsee.pro
|
|
%else
|
|
lrelease-qt5 gpxsee.pro
|
|
qmake-qt5 gpxsee.pro
|
|
%endif
|
|
make %{?_smp_mflags}
|
|
make clean
|
|
|
|
|
|
%install
|
|
install -d 755 %{buildroot}/%{_bindir}
|
|
install -d 755 %{buildroot}/%{_datadir}/applications
|
|
install -d 755 %{buildroot}/%{_datadir}/pixmaps
|
|
install -d 755 %{buildroot}/%{_datadir}/%{name}
|
|
install -m 755 GPXSee %{buildroot}/%{_bindir}/%{name}
|
|
install -m 644 pkg/maps.txt %{buildroot}/%{_datadir}/%{name}
|
|
install -m 644 icons/gpxsee.png %{buildroot}/%{_datadir}/pixmaps/%{name}.png
|
|
install -m 644 %{SOURCE1} %{buildroot}/%{_datadir}/applications/%{name}.desktop
|
|
|
|
%post
|
|
if [ -x /usr/bin/update-desktop-database ]; then
|
|
/usr/bin/update-desktop-database > /dev/null || :
|
|
fi
|
|
|
|
%postun
|
|
if [ -x /usr/bin/update-desktop-database ]; then
|
|
/usr/bin/update-desktop-database > /dev/null || :
|
|
fi
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%dir %{_datadir}/gpxsee
|
|
%{_bindir}/*
|
|
%{_datadir}/%{name}/*
|
|
%{_datadir}/applications/*
|
|
%{_datadir}/pixmaps/*
|
|
|
|
%changelog
|