summaryrefslogtreecommitdiffstats
path: root/nss_directories.spec
diff options
context:
space:
mode:
Diffstat (limited to 'nss_directories.spec')
-rw-r--r--nss_directories.spec37
1 files changed, 37 insertions, 0 deletions
diff --git a/nss_directories.spec b/nss_directories.spec
new file mode 100644
index 0000000..793a586
--- /dev/null
+++ b/nss_directories.spec
@@ -0,0 +1,37 @@
+Name: nss_directories
+Version: 0.1
+Release: 1
+Source: %{name}-%{version}.tar.gz
+License: LGPL
+Group: System Environment/Libraries
+Summary: An NSS library which searches directories.
+BuildRoot: %{_tmppath}/%{name}-root
+
+%description
+Nss_directories is a set of C library extensions which allow a set of
+files in a directory to be used as a primary source of groups, users,
+services, and shadow passwords (instead of or in addition to using flat
+files or NIS).
+
+%prep
+%setup -q
+%configure --with-moduledir=/%{_lib}
+
+%build
+make
+
+%install
+rm -fr $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -fr $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+%doc README
+/%{_lib}/libnss_directories-*.so
+
+%changelog
+* Sun Nov 17 2002 Nalin Dahyabhai <nalin@redhat.com> 0.1-1
+- initial version