1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
#
# stiff.spec.in
#
# Process this file with autoconf to generate an RPM .spec packaging script.
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#
# This file part of: STIFF
#
# Copyright: (C) 2003-2013 Emmanuel Bertin -- IAP/CNRS/UPMC
#
# License: GNU General Public License
#
# STIFF is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# STIFF is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with STIFF. If not, see <http://www.gnu.org/licenses/>.
#
# Last modified: 27/06/2013
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%define name @PACKAGE_NAME@
%define version @PACKAGE_VERSION@
%define release 1
%undefine _missing_build_ids_terminate_build
Summary: convert FITS images to TIFF format
Name: %{name}
Version: %{version}
Release: %{release}
Source0: ftp://ftp.iap.fr/pub/from_users/bertin/%{name}/%{name}-%{version}.tar.gz
URL: http://astromatic.net/software/%{name}
License: GPL v3+
Group: Sciences/Astronomy
BuildRoot: %{_tmppath}/%{name}-buildroot
BuildRequires: pkgconfig
BuildRequires: libtiff-devel
BuildRequires: zlib-devel
%description
STIFF is a program that convert scientific FITS images to the
more popular TIFF, in 8 (grayscale) or 24 (true colour) bits per pixel.
%prep
%setup -q
%build
if test "$USE_BEST"; then
%configure --enable-icc --enable-auto-flags --enable-best-link
elif test "$USE_ICC"; then
%configure --enable-icc
else
%configure
fi
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc AUTHORS BUGS ChangeLog COPYRIGHT HISTORY INSTALL LICENSE README THANKS doc/stiff.pdf
%{_bindir}/@PACKAGE_NAME@
%{_mandir}/man1/@PACKAGE_NAME@.1*
%{_mandir}/manx/@PACKAGE_NAME@.x*
%{_datadir}/@PACKAGE_NAME@
%changelog
* @DATE2@ @PACKAGER@ <@PACKAGE_BUGREPORT@>
- Automatic RPM rebuild
* Mon Feb 17 2003 Emmanuel Bertin <bertin@iap.fr>
- Fourth RPM build
* Sat Feb 01 2003 Emmanuel Bertin <bertin@iap.fr>
- Third RPM build
* Mon Jan 27 2003 Emmanuel Bertin <bertin@iap.fr>
- Second RPM build
* Sun Jan 19 2003 Emmanuel Bertin <bertin@iap.fr>
- First RPM build
# end of file
|