package created by autospec [release 1.3.3-1mamba;Thu Nov 19 2009]

This commit is contained in:
Silvan Calarco 2024-01-06 05:00:58 +01:00
parent 9b47035e4e
commit 3a06b23050
2 changed files with 62 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libmatio # libmatio
An ISO C library (with a limited Fortran 90 interface) for reading and writing Matlab MAT files.

60
libmatio.spec Normal file
View File

@ -0,0 +1,60 @@
Name: libmatio
Version: 1.3.3
Release: 1mamba
Summary: An ISO C library (with a limited Fortran 90 interface) for reading and writing Matlab MAT files
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://matio.sourceforge.net/
Source: http://downloads.sourceforge.net/project/matio/matio/%{version}/matio-%{version}.tar.gz
License: LGPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
An ISO C library (with a limited Fortran 90 interface) for reading and writing Matlab MAT files.
%package devel
Summary: Devel package for %{name}
Group: Development/Libraries
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description devel
An ISO C library (with a limited Fortran 90 interface) for reading and writing Matlab MAT files.
This package contains static libraries and header files need for development.
%prep
%setup -q -n matio-%{version}
%build
%configure --enable-shared
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_libdir}/libmatio.so.*
%doc COPYING ChangeLog NEWS README
%files devel
%defattr(-,root,root)
%dir %{_includedir}
%{_includedir}/*.h
%{_libdir}/libmatio.a
%{_libdir}/libmatio.la
%{_libdir}/libmatio.so
%{_libdir}/pkgconfig/*.pc
%changelog
* Thu Nov 19 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.3.3-1mamba
- package created by autospec