mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
a49bc99689
The URL field in the spl-modules and spl package spec files were updated to point to the ZFS on Linux repository hosted by github. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
39 lines
832 B
RPMSpec
39 lines
832 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}
|
|
License: @LICENSE@
|
|
URL: git://github.com/zfsonlinux/spl.git
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id} -un)
|
|
Source: %{name}-%{version}.tar.gz
|
|
|
|
%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
|