Compare commits
8 Commits
1.5.1-1mam
...
main
Author | SHA1 | Date | |
---|---|---|---|
077be0d114 | |||
6d7a5bb53c | |||
55e6301697 | |||
6a0eea5ac0 | |||
2aa34c5bee | |||
|
d1650cd82a | ||
8f18efba49 | |||
3308b50ff4 |
@ -1,21 +1,35 @@
|
||||
%define tagver %(echo %version | tr . _)
|
||||
Name: gpsbabel
|
||||
Version: 1.5.1
|
||||
Version: 1.10.0
|
||||
Release: 1mamba
|
||||
Summary: GPSBabel converts waypoints, tracks, and routes between popular GPS receivers and mapping programs
|
||||
Group: Applications/Scientific
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Ercole 'ercolinux' Carpanetto <ercole69@gmail.com>
|
||||
URL: http://www.gpsbabel.org
|
||||
#get source at http://www.gpsbabel.org/plan9.php
|
||||
Source: http://pkgs.fedoraproject.org/repo/pkgs/gpsbabel/gpsbabel-%{version}.tar.gz/6c4c8f0cb9fcf9f8302585148878f174/gpsbabel-%{version}.tar.gz
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://www.gpsbabel.org/
|
||||
Source: https://github.com/gpsbabel/gpsbabel.git/gpsbabel_%{tagver}/gpsbabel-%{version}.tar.bz2
|
||||
License: GPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: libexpat-devel
|
||||
BuildRequires: libusb0-devel
|
||||
BuildRequires: libQt6Core
|
||||
BuildRequires: libQt6Gui
|
||||
BuildRequires: libQt6Network
|
||||
BuildRequires: libQt6OpenGL
|
||||
BuildRequires: libQt6PrintSupport
|
||||
BuildRequires: libQt6SerialPort-devel
|
||||
BuildRequires: libQt6Widgets
|
||||
BuildRequires: libQt6Xml
|
||||
BuildRequires: libgcc
|
||||
BuildRequires: libglvnd-devel
|
||||
BuildRequires: libstdc++6-devel
|
||||
BuildRequires: libusb-devel
|
||||
BuildRequires: qt6-qt5compat-devel
|
||||
BuildRequires: qt6-qtdeclarative-devel
|
||||
BuildRequires: qt6-qtpositioning-devel
|
||||
BuildRequires: qt6-qtwebchannel-devel
|
||||
BuildRequires: qt6-qtwebengine-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
GPSBabel converts waypoints, tracks, and routes between popular GPS receivers and mapping programs. It also has powerful manipulation tools for such data. By flattening the Tower of Babel that the authors of various programs for manipulating GPS data have imposed upon us, it returns to us the ability to freely move our own waypoint data between the programs and hardware we choose to use. It does not convert, transfer, send, or manipulate maps. We process data that may (or may not be) placed on a map, such as waypoints, tracks, and routes.
|
||||
@ -26,12 +40,17 @@ GPSBabel converts waypoints, tracks, and routes between popular GPS receivers an
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure
|
||||
%cmake -d build
|
||||
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall
|
||||
#% makeinstall -C build
|
||||
install -D -m0755 build/gpsbabel %{buildroot}%{_bindir}/gpsbabel
|
||||
install -D -m0755 build/gui/GPSBabelFE/gpsbabelfe %{buildroot}%{_bindir}/gpsbabelfe
|
||||
install -D -m0644 gui/gpsbabel.desktop %{buildroot}%{_datadir}/applications/gpsbabel.desktop
|
||||
install -D -m0644 gui/images/appicon.png %{buildroot}%{_datadir}/pixmaps/gpsbabel.png
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
@ -39,9 +58,36 @@ GPSBabel converts waypoints, tracks, and routes between popular GPS receivers an
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/gpsbabel
|
||||
%{_bindir}/gpsbabelfe
|
||||
%{_datadir}/applications/gpsbabel.desktop
|
||||
%{_datadir}/pixmaps/gpsbabel.png
|
||||
%doc AUTHORS COPYING
|
||||
|
||||
%changelog
|
||||
* Tue Dec 24 2024 Automatic Build System <autodist@openmamba.org> 1.10.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 20 2023 Automatic Build System <autodist@mambasoft.it> 1.9.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jan 25 2022 Automatic Build System <autodist@mambasoft.it> 1.8.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Sep 06 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.7.0-1mamba
|
||||
- update to 1.7.0
|
||||
|
||||
* Sat Oct 26 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6.0-1mamba
|
||||
- update to 1.6.0
|
||||
|
||||
* Sun Apr 09 2017 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 1.5.4-1mamba
|
||||
- update to 1.5.4
|
||||
|
||||
* Sat Jan 23 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.3-1mamba
|
||||
- update to 1.5.3
|
||||
|
||||
* Sun Mar 15 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.2-1mamba
|
||||
- update to 1.5.2
|
||||
|
||||
* Tue Jun 17 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.1-1mamba
|
||||
- update to 1.5.1
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user