-
Notifications
You must be signed in to change notification settings - Fork 1
/
mfreq.spec
49 lines (38 loc) · 1.18 KB
/
mfreq.spec
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
Name: mfreq
Version: 3.15
Release: 1%{?dist}
Summary: a suite of tools for FTS style file requesting
Group: Applications/FTN
License: EUPL
URL: https://github.com/ftnapps/mfreq
Source0: %{name}-%{version}.tar.gz
#BuildRequires:
#Requires:
%description
mfreq is a suite of tools for FTS style file requesting. It consists of a
file index generator, filelist generator and a SRIF compatible file request
handler.
%prep
%setup -q
%build
make
%install
mkdir -p "%{buildroot}%{_bindir}"
mkdir -p "%{buildroot}%{_docdir}/%{name}-%{version}"
make install PREFIX=%{buildroot}/usr
cp README CHANGES EUPL-v1.1.pdf "%{buildroot}%{_docdir}/%{name}-%{version}"
cp -a sample-cfg "%{buildroot}%{_docdir}/%{name}-%{version}/"
%files
%defattr(-,root,root)
%{_bindir}/mfreq-index
%{_bindir}/mfreq-list
%{_bindir}/mfreq-srif
%dir %{_docdir}/%{name}-%{version}
%doc %{_docdir}/%{name}-%{version}/README
%doc %{_docdir}/%{name}-%{version}/CHANGES
%doc %{_docdir}/%{name}-%{version}/EUPL-v1.1.pdf
%dir %{_docdir}/%{name}-%{version}/sample-cfg
%doc %{_docdir}/%{name}-%{version}/sample-cfg/*
%changelog
* Mon Oct 19 2015 Eric Renfro <[email protected]>
- Initial RPM spec from github tag for version 3.13.