]> git.pld-linux.org Git - packages/AMD.git/blob - AMD.spec
- renamed to AMD
[packages/AMD.git] / AMD.spec
1 Summary:        AMD: routines for ordering a sparse matrix
2 Name:           AMD
3 Version:        2.2.0
4 Release:        1
5 License:        LGPL
6 Group:          Libraries
7 Source0:        http://www.cise.ufl.edu/research/sparse/amd/%{name}-%{version}.tar.gz
8 # Source0-md5:  f81fcae945de82864035b03ee20a8d2b
9 Patch0:         amd-ufconfig.patch
10 Patch1:         amd-shared.patch
11 URL:            http://www.cise.ufl.edu/research/sparse/amd/
12 BuildRequires:  UFconfig
13 BuildRequires:  libtool >= 2:1.5
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 AMD is a set of routines for ordering a sparse matrix prior
18 to Cholesky factorization (or for LU factorization with
19 diagonal pivoting). There are versions in both C and Fortran.
20 A MATLAB interface is provided.
21 Note that this software has nothing to do with AMD the company.
22
23 %package devel
24 Summary:        Header files for amd library
25 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki amd
26 Group:          Development/Libraries
27 Requires:       %{name} = %{version}-%{release}
28 Requires:       UFconfig
29
30 %description devel
31 Header files for amd library.
32
33 %description devel -l pl.UTF-8
34 Pliki nagłówkowe biblioteki amd.
35
36 %package static
37 Summary:        Static amd library
38 Summary(pl.UTF-8):      Statyczna biblioteka amd
39 Group:          Development/Libraries
40 Requires:       %{name}-devel = %{version}-%{release}
41
42 %description static
43 Static amd library.
44
45 %description static -l pl.UTF-8
46 Statyczna biblioteka amd.
47
48 %prep
49 %setup -q -n %{name}
50 %patch0 -p1
51 %patch1 -p1
52
53 %build
54 %{__make} \
55         CC="%{__cc}" \
56         F77="gfortran" \
57         CFLAGS="%{rpmcflags} -fPIC" \
58         libdir=%{_libdir}
59
60 %install
61 rm -rf $RPM_BUILD_ROOT
62
63 %{__make} -C Lib install \
64         DESTDIR=$RPM_BUILD_ROOT \
65         libdir=%{_libdir}
66
67 install -D Include/amd.h $RPM_BUILD_ROOT%{_includedir}/amd.h
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %post   -p /sbin/ldconfig
73 %postun -p /sbin/ldconfig
74
75 %files
76 %defattr(644,root,root,755)
77 %doc README.txt
78 %attr(755,root,root) %{_libdir}/libamd.so.*.*.*
79
80 %files devel
81 %defattr(644,root,root,755)
82 %attr(755,root,root) %{_libdir}/libamd.so
83 %{_libdir}/libamd.la
84 %{_includedir}/amd.h
85
86 %files static
87 %defattr(644,root,root,755)
88 %{_libdir}/libamd.a
This page took 0.071123 seconds and 3 git commands to generate.