mirror_zfs/spl.spec.in
Brian Behlendorf 87d1123924 Fix rpm dependencies
This change updates the rpm spec files to have strictly correct
package dependencies.  That means a few things:

* Add a dependency to the spl package for the spl-modules package.
  This ensures that when running 'yum install spl' that newest
  version of the spl-modules will be installed.

* Remove the redundant distribution release extension.  This
  is already added once because it is part of the kernel package
  release name.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
2012-01-18 11:24:36 -08:00

40 lines
869 B
RPMSpec

%define name @PACKAGE@
%define version @VERSION@
%define release @SPL_META_RELEASE@
%define debug_package %{nil}
Summary: SPL Utils
Group: Utilities/System
Name: %{name}
Version: %{version}
Release: %{release}%{?dist}
License: @LICENSE@
URL: git://github.com/zfsonlinux/spl.git
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id} -un)
Source: %{name}-%{version}.tar.gz
Requires: spl-modules
%description
The %{name} package contains the support utilities for the spl.
%prep
%setup
%build
%configure --with-config=user
make
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-, root, root)
%doc AUTHORS ChangeLog COPYING DISCLAIMER INSTALL
%{_sbindir}/*
%post
%postun