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
|
%define __cmake_in_source_build %{_vpath_builddir}
Name: stellarsolver
Version: 2.6.git
Release: %(date -u +%%Y%%m%%d%%H%%M%%S)%{?dist}
Summary: The Cross Platform Sextractor and Astrometry.net-Based Internal Astrometric Solver
License: LGPLv3
URL: https://github.com/rlancaste/stellarsolver
Source0: https://github.com/rlancaste/stellarsolver/archive/master.tar.gz
%global debug_package %{nil}
%define __find_requires %{nil}
Provides: stellarsolver.so(64-bit)
Provides: libstellarsolver.so.1()(64bit)
Provides: stellarsolver.so
Provides: stellarsolver.a
BuildRequires: cmake
BuildRequires: systemd
BuildRequires: extra-cmake-modules
BuildRequires: pkgconfig(cfitsio)
BuildRequires: pkgconfig(gsl)
BuildRequires: pkgconfig(wcslib)
BuildRequires: pkgconfig(Qt5) >= 5.4
%description
An Astrometric Plate Solver for Mac, Linux, and Windows, built on Astrometry.net and SEP (sextractor)
%prep
%autosetup -v -n %{name}-master
%build
%cmake .
%make_build
%install
#find %buildroot -type f \( -name '*.so' -o -name '*.so.*' \) -exec chmod 755 {} +
%cmake_install
%ldconfig_scriptlets
%files
%{_libdir}/*
%{_includedir}/*
%license LICENSE
%changelog
* Thu May 24 2025 Rob Lancaster <rlancaste@gmail.com> 2.7.git
- Updating Spec file to latest version
* Thu Jul 06 2024 Rob Lancaster <rlancaste@gmail.com> 2.6.git
- Updating Spec file to latest version
* Thu Aug 17 2023 Rob Lancaster <rlancaste@gmail.com> 2.5.git
- Updating Spec file to latest version
* Sat May 15 2022 Rob Lancaster <rlancaste@gmail.com> 2.4.git
- Updating Spec file to latest version
* Sat May 15 2022 Rob Lancaster <rlancaste@gmail.com> 2.3.git
- Updating Spec file to latest version
* Thu Mar 15 2022 Rob Lancaster <rlancaste@gmail.com> 2.2.git
- Updating Spec file to latest version
* Thu Mar 10 2022 Rob Lancaster <rlancaste@gmail.com> 2.1.git
- Updating Spec file to latest version
* Thu Mar 02 2022 Jim Howard <jh.xsnrg@gmail.com> 2.0.git
- Updating Spec file to latest version
* Thu Dec 29 2020 Rob Lancaster <rlancaste@gmail.com> 1.6.git
- Updating Spec file to latest version and Supporting additional ASTAP features
* Thu Oct 08 2020 Jim Howard <jh.xsnrg+fedora@gmail.com> 1.4.git
- introduction of spec file to build RPM packages from git
|