]> git.pld-linux.org Git - packages/OpenIPMI.git/blob - OpenIPMI.spec
- updated to 1.3.9
[packages/OpenIPMI.git] / OpenIPMI.spec
1 Summary:        IPMI abstraction layer
2 Summary(pl):    Warstwa abstrakcji IPMI
3 Name:           OpenIPMI
4 Version:        1.3.9
5 Release:        1
6 License:        LGPL (library), GPL (ipmicmd)
7 Group:          Libraries
8 Source0:        http://dl.sourceforge.net/openipmi/%{name}-%{version}.tar.gz
9 # Source0-md5:  bb7115a03abc6b8cef1b16e651bd738e
10 Patch0:         %{name}-link.patch
11 URL:            http://openipmi.sourceforge.net/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libtool >= 1:1.4.2-9
15 BuildRequires:  ncurses-devel
16 BuildRequires:  popt-devel
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 OpenIPMI project aims to develop an open code base to allow access to
21 platform information using Intelligent Platform Management Interface
22 (IPMI).
23
24 %description -l pl
25 Celem projektu OpenIPMI jest stworzenie otwartej podstawy kodu
26 pozwalaj±cego na dostêp do informacji o platformie pzy u¿yciu
27 interfejsu IPMI (Intelligent Platform Management Interface -
28 interfejsu inteligentnego zarz±dzania platform±)
29
30 %package devel
31 Summary:        Development part of OpenIPMI Toolkit libraries
32 Summary(pl):    Programistyczna cze¶æ bibliotek OpenIPMI
33 Group:          Development/Libraries
34 Requires:       %{name} = %{version}-%{release}
35
36 %description devel
37 Development part of OpenIPMI libraries.
38
39 %description devel -l pl
40 Programistyczna cze¶æ bibliotek OpenIPMI.
41
42 %package static
43 Summary:        Static OpenIPMI libraries
44 Summary(pl):    Statyczne biblioteki OpenIPMI
45 Group:          Development/Libraries
46 Requires:       %{name}-devel = %{version}-%{release}
47
48 %description static
49 Static OpenIPMI Toolkit libraries.
50
51 %description static -l pl
52 Statyczne biblioteki OpenIPMI.
53
54 %prep
55 %setup -q
56 %patch0 -p1
57
58 %build
59 %{__libtoolize}
60 %{__aclocal}
61 %{__autoconf}
62 %{__automake}
63 CPPFLAGS="-I/usr/include/ncurses"
64 %configure
65 %{__make}
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69
70 %{__make} install \
71         DESTDIR=$RPM_BUILD_ROOT
72
73 %clean
74 rm -rf $RPM_BUILD_ROOT
75
76 %post   -p /sbin/ldconfig
77 %postun -p /sbin/ldconfig
78
79 %files
80 %defattr(644,root,root,755)
81 %doc ChangeLog FAQ README* TODO
82 %attr(755,root,root) %{_bindir}/*
83 %attr(755,root,root) %{_libdir}/lib*.so.*.*
84 %{_infodir}/%{name}*
85 %{_mandir}/man?/*
86
87 %files devel
88 %defattr(644,root,root,755)
89 %attr(755,root,root) %{_libdir}/lib*.so
90 %{_libdir}/*.la
91 %{_includedir}/%{name}
92 %{_pkgconfigdir}/*.pc
93
94 %files static
95 %defattr(644,root,root,755)
96 %{_libdir}/lib*.a
This page took 0.039189 seconds and 4 git commands to generate.