mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
69 lines
1.8 KiB
RPMSpec
69 lines
1.8 KiB
RPMSpec
Name: qgis
|
|
Version: @VERSION@
|
|
Release: 0
|
|
Copyright: GPL
|
|
Group: Applications/Engineering
|
|
Autoreqprov: on
|
|
Source: %{name}-%{version}.tar.gz
|
|
URL: http://qgis.sourceforge.net/
|
|
Summary: Quantum GIS (QGIS) is designed to be a Geographic Information System (GIS) built for Linux/Unix.
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%define prefix /usr
|
|
|
|
%description
|
|
Quantum GIS (QGIS) is designed to be a Geographic Information System (GIS)
|
|
built for Linux/Unix. QGIS will offer support for vector and raster formats.
|
|
Currently QGIS supports shapefiles and PostgreSQL/PostGIS layers.
|
|
|
|
Planned features include:
|
|
|
|
* Read and edit shapefiles
|
|
* Display georeferenced rasters (tiff, png, geotiff)
|
|
* Plugins to dynamically add new functionality to the application
|
|
* Support for database tables
|
|
* Support for spatially enabled tables in PostgreSQL using PostGIS
|
|
* Map output
|
|
* Script engine
|
|
* Metadata support
|
|
|
|
Authors:
|
|
----------
|
|
Carl Anderson
|
|
Christoph Spoerri <spoerri at users.sourceforge.net>
|
|
Denis Antipov <rawbytes at users.sourceforge.net>
|
|
Gary E.Sherman <sherman at mrcc dot com>
|
|
Jens Oberender <j.obi at troja.net>
|
|
Marco Hugentobler <mhugent at users.sourceforge.net>
|
|
Mark Coletti <mcoletti at users.sourceforge.net>
|
|
Masaru Hoshi
|
|
Radim Blazek <blazek at itc.it>
|
|
Steve Halasz <stevehalasz at users.sourceforge.net>
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
export CFLAGS="$RPM_OPT_FLAGS"
|
|
./configure --prefix=%{prefix}
|
|
make
|
|
strip src/qgis
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%{prefix}/bin/%{name}
|
|
%{prefix}/lib/%{name}
|
|
%{prefix}/share/%{name}
|
|
%doc AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README TODO
|
|
|
|
%changelog -n qgis
|
|
* Wed Feb 18 2004 - Jens Oberender <j.obi@troja.net>
|
|
- the first spec for CVS
|