blob: d631b4e533113be10ed2f50639094c36cf261113 (
plain)
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
|
Summary: Just A Small Multicast engINE
Name: daisy4nfv-jasmine
Version: @version@
Release: 1%{?dist}
Vendor: ZTE
License: Apache-2.0
Group: System Environment/Base
URL: https://wiki.opnfv.org/display/DAIS
Source: %{name}-%{version}%{?gittarver}.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%description
daisy4nfv-jasmine is used to distribute files over UDP multicast for installers
%prep
%setup -q -n %{name}-%{version}%{?gittarver}
%build
if [ ! -f configure ]; then
./autogen.sh
fi
./configure
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
%files
%{_bindir}/jasmines
%{_bindir}/jasminec
|