chiark / gitweb /
[PATCH] udev spec file
authorlethal@linux-sh.org <lethal@linux-sh.org>
Tue, 5 Aug 2003 08:17:07 +0000 (01:17 -0700)
committerGreg KH <gregkh@suse.de>
Wed, 27 Apr 2005 04:01:40 +0000 (21:01 -0700)
Here's a relatively rudimentary patch that addes udev.spec. With this, you can
rpm -ta the tarball and generate rpms. I've also attached the ones I build on
my RH 7.3 host incase they are of interest to you.

udev.spec [new file with mode: 0644]

diff --git a/udev.spec b/udev.spec
new file mode 100644 (file)
index 0000000..2a64fb3
--- /dev/null
+++ b/udev.spec
@@ -0,0 +1,36 @@
+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
+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.
+