libcurl is a requirement
[viking/guyou.git] / viking.spec.in
bloba17c7eba7f1b238f49a9c9fbbcda2799d663f16b
1 #%% Fedora style spec file written by Michael A. Peters
2 #%% It is released under Public Domain
3 #%% May be redistributed without this notice.
5 Name: viking
6 Version: @VERSION@
7 Release: 1
9 Summary: GPS data editor and analyzer
11 Group: Applications/Productivity
12 License: GPL
13 URL: http://sourceforge.net/projects/viking/
14 Source0: %{name}-%{version}.tar.gz
15 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
17 BuildRequires: curl-devel
18 BuildRequires: expat-devel
19 BuildRequires: gtk2-devel >= 2.2.0
20 BuildRequires: pkgconfig
22 %description
23 Viking is a free/open source program to manage GPS data. You can import and
24 plot tracks and waypoints, show Terraserver maps under it, add coordinate
25 lines, make new tracks and waypoints, hide different things, etc. It is written
26 in C with the GTK+ 2.
28 %prep
29 %setup -q
31 %build
32 %configure
33 make
35 %install
36 rm -rf %{buildroot}
37 make DESTDIR=%{buildroot} install
38 rm -f doc/Makefile*
39 rm -f doc/dev/Makefile*
41 %check
42 make test
44 %clean
45 rm -rf %{buildroot}
47 %files
48 %defattr(-,root,root,-)
49 %doc AUTHORS ChangeLog COPYING NEWS README TODO doc/
50 %{_bindir}/viking
51 %{_bindir}/viking-remote
53 %changelog
54 * Fri Jul 13 2007 Guilhem Bonnefille <guilhem.bonnefille> - 0.9-1
55 - Update to upstream version 0.9.
57 * Thu May 18 2007 Quy Tonthat <qtonthat@gmail.com>
58 - Added curl-devel to BuildRequires list.
60 * Thu May 15 2007 Guilhem Bonnefille <guilhem.bonnefille> - 0.1.3-1
61 - Update to upstream version 0.1.3.
63 * Wed Feb 14 2007 Michael A. Peters <mpeters@mac.com> - 0.1.2-1
64 - Initial Fedora style spec file.