diff --git a/README.md b/README.md index b15c411..02448d1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # checkpassword-pam +checkpassword-pam is an implementation of checkpassword-compatible +authentication program. + diff --git a/checkpassword-pam.spec b/checkpassword-pam.spec new file mode 100644 index 0000000..1801128 --- /dev/null +++ b/checkpassword-pam.spec @@ -0,0 +1,53 @@ +Name: checkpassword-pam +Version: 0.99 +Release: 2mamba +Summary: An implementation of checkpassword-compatible authentication program. +Group: Applications/Security +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://checkpasswd-pam.sourceforge.net/ +Source: http://downloads.sourceforge.net/sourceforge/checkpasswd-pam/checkpassword-pam-%{version}.tar.gz +License: GPL +BuildRequires: pam-devel >= 0.75 +Requires: pam >= 0.75 +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +checkpassword-pam is an implementation of checkpassword-compatible +authentication program. + +%prep +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%setup -q + + +%build +./configure \ + --prefix=%{_prefix} \ + --mandir=%{_mandir} +make + +%install +make install DESTDIR=%{buildroot} +mkdir -p %{buildroot}/etc/pam.d + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/checkpassword-pam +%{_mandir}/man8/checkpassword-pam.* + +%changelog +* Thu Sep 05 2013 Automatic Build System 0.99-2mamba +- automatic rebuild by autodist + +* Sun May 20 2007 Silvan Calarco 0.99-1mamba +- update to 0.99 + +* Thu Jun 26 2003 Silvan Calarco 0.95-1qilnx +- first build +