forked from martinetd/mooshika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libmooshika.spec.in
53 lines (40 loc) · 963 Bytes
/
libmooshika.spec.in
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
Summary: The mooshika library (libmooshika)
Name: libmooshika
Version: 0.1
Release: 1
Group: Application/Devel
Packager: Dominique Martinet <dominique.martinet.ocre@cea.fr>
License: CeCILL
Source: %{name}-%{version}.tar.gz
BuildRoot: /tmp/%{name}-buildroot
Prefix: %{_prefix}
Requires: librdmacm, libibverbs
BuildRequires: librdmacm-devel, libibverbs-devel, gcc, automake, libtool
%package devel
Group: Application/Devel
Summary: Development files for libmooshika
Requires: librdmacm-devel, libibverbs-devel
%description devel
Development files for libmooshika
%description
This package contains the libmooshika library
It is an helper for rdma connection handling
%prep
%setup -q -n %{name}-%{version}
%build
%configure @ac_configure_args@
make
%install
rm -rf %{buildroot}
%makeinstall
%clean
rm -rf %{buildroot}
%files
%{_libdir}/*.so*
%{_libdir}/*.la
%{_bindir}/*
%files devel
%{_includedir}/*
%{_libdir}/*.a
%{_libdir}/pkgconfig/*.pc
%changelog