61 lines
1.6 KiB
RPMSpec
61 lines
1.6 KiB
RPMSpec
%define gittag %(echo %version | cut -d. -f4)
|
|
Name: libfixmath
|
|
Version: 0.0.20220623git.809bcea
|
|
Release: 1mamba
|
|
Summary: Cross Platform Fixed Point Maths Library
|
|
Group: System/Libraries
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: https://code.google.com/archive/p/libfixmath/
|
|
Source: https://github.com/PetteriAimonen/libfixmath.git/master@%{gittag}/libfixmath-%{version}.tar.bz2
|
|
License: MIT
|
|
## AUTOBUILDREQ-BEGIN
|
|
## AUTOBUILDREQ-END
|
|
BuildRequires: cmake
|
|
|
|
%description
|
|
Cross Platform Fixed Point Maths Library.
|
|
|
|
%package devel
|
|
Group: Development/Libraries
|
|
Summary: Development files for %{name}
|
|
|
|
%description devel
|
|
Cross Platform Fixed Point Maths Library.
|
|
This package contains libraries and header files for developing applications that use %{name}.
|
|
|
|
#% debug_package
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%cmake -d build
|
|
%make
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
install -d -m0755 %{buildroot}%{_libdir}
|
|
cp build/liblibfixmath*.a %{buildroot}%{_libdir}/
|
|
|
|
install -d -m0755 %{buildroot}%{_includedir}/libfixmath
|
|
cp libfixmath/*.h %{buildroot}%{_includedir}/libfixmath/
|
|
cp libfixmath/*.hpp %{buildroot}%{_includedir}/libfixmath/
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%dir %{_includedir}/libfixmath
|
|
%{_includedir}/libfixmath/*.h
|
|
%{_includedir}/libfixmath/*.hpp
|
|
%{_libdir}/liblibfixmath*.a
|
|
%doc AUTHORS LICENSE README.md
|
|
|
|
%changelog
|
|
* Sun Jul 17 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 0.0.20220623git.809bcea-1mamba
|
|
- package created using the webbuild interface
|