forked from linux-nvme/nvme-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnvme.spec.in
More file actions
38 lines (31 loc) · 774 Bytes
/
nvme.spec.in
File metadata and controls
38 lines (31 loc) · 774 Bytes
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
Name: nvme
Version: @@VERSION@@
Release: 1%{?dist}
Summary: Core nvme tools
License: GPL
Group: Development/Tools
URL: https://github.com/linux-nvme/nvme-cli/
Source: nvme-@@VERSION@@.tar.gz
Provides: nvme
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
NVMe is a fast, scalable, direct attached storage interface. The nvme
cli rpm installs core management tools with minimal dependencies.
%prep
%setup
%build
make
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=%{buildroot} PREFIX=/usr
%files
%defattr(-,root,root)
%doc Documentation/nvme*.1
%{_sbindir}/nvme
%{_mandir}/man1/nvme*.1*
%{_sysconfdir}/bash_completion.d/nvme
%clean
rm -rf $RPM_BUILD_ROOT
%changelog
* Thu Oct 15 2015 Keith Busch <keith.busch@intel.com>
- Initial RPM spec