mdadm/mdadm.spec

48 lines
1.4 KiB
RPMSpec
Raw Normal View History

2002-03-20 23:39:50 +01:00
Summary: mdadm is used for controlling Linux md devices (aka RAID arrays)
Name: mdadm
Version: 4.2
2002-03-20 23:39:50 +01:00
Release: 1
Source: https://www.kernel.org/pub/linux/utils/raid/mdadm/mdadm-%{version}.tar.gz
URL: https://neil.brown.name/blog/mdadm
2002-03-20 23:39:50 +01:00
License: GPL
Group: Utilities/System
2002-04-04 03:58:32 +02:00
BuildRoot: %{_tmppath}/%{name}-root
2002-03-20 23:39:50 +01:00
Obsoletes: mdctl
2002-03-15 06:21:36 +01:00
%description
2002-03-20 23:39:50 +01:00
mdadm is a program that can be used to create, manage, and monitor
Linux MD (Software RAID) devices.
2002-03-15 06:21:36 +01:00
%prep
%setup -q
2002-04-11 03:36:14 +02:00
# we want to install in /sbin, not /usr/sbin...
%define _exec_prefix %{nil}
2002-03-15 06:21:36 +01:00
%build
# This is a debatable issue. The author of this RPM spec file feels that
# people who install RPMs (especially given that the default RPM options
# will strip the binary) are not going to be running gdb against the
# program.
2002-05-10 06:06:19 +02:00
make CXFLAGS="$RPM_OPT_FLAGS" SYSCONFDIR="%{_sysconfdir}"
2002-03-15 06:21:36 +01:00
%install
2002-04-06 00:00:28 +02:00
make DESTDIR=$RPM_BUILD_ROOT MANDIR=%{_mandir} BINDIR=%{_sbindir} install
install -D -m644 mdadm.conf-example $RPM_BUILD_ROOT/%{_sysconfdir}/mdadm.conf
2002-03-15 06:21:36 +01:00
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
2002-04-06 00:00:28 +02:00
%doc TODO ChangeLog mdadm.conf-example COPYING
2002-03-20 23:39:50 +01:00
%{_sbindir}/mdadm
2011-12-23 04:32:44 +01:00
%{_sbindir}/mdmon
/usr/lib/udev/rules.d/01-md-raid-creating.rules
/usr/lib/udev/rules.d/63-md-raid-arrays.rules
/usr/lib/udev/rules.d/64-md-raid-assembly.rules
/usr/lib/udev/rules.d/69-md-clustered-confirm-device.rules
2002-03-20 23:39:50 +01:00
%config(noreplace,missingok)/%{_sysconfdir}/mdadm.conf
2002-03-15 06:21:36 +01:00
%{_mandir}/man*/md*
%changelog