mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-11-24 07:20:56 +07:00
38 lines
817 B
RPMSpec
38 lines
817 B
RPMSpec
Summary: A userspace implementation of devfs
|
|
Name: udev
|
|
Version: 0.2
|
|
Release: 1
|
|
License: GPL
|
|
Group: Utilities/System
|
|
Source: ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/%{name}-%{version}.tar.gz
|
|
ExclusiveOS: Linux
|
|
Vendor: Greg Kroah-Hartman <greg@kroah.com>
|
|
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-root
|
|
|
|
%description
|
|
udev is a implementation of devfs in userspace using sysfs and
|
|
/sbin/hotplug. It requires a 2.5/2.6 kernel to run properly.
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
make
|
|
|
|
%install
|
|
mkdir -p $RPM_BUILD_ROOT/sbin
|
|
install -m 755 %{name} $RPM_BUILD_ROOT/sbin
|
|
|
|
%clean
|
|
rm -fr $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%attr(755,root,root)/sbin/%{name}
|
|
%attr(-,root,root) %doc COPYING README TODO ChangeLog
|
|
|
|
%changelog
|
|
* Mon Jul 28 2003 Paul Mundt <lethal@linux-sh.org>
|
|
- Initial spec file for udev-0.2.
|
|
|