1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
Name: libntlm
Version: 1.4
Release: 1
Group: Development/Libraries
Summary: Microsoft WinNT domain authentication library
License: LGPL
Source: http://josefsson.org/libntlm/releases/libntlm-%{version}.tar.gz
URL: http://josefsson.org/libntlm/
BuildRoot: %{_tmppath}/root-%{name}-%{version}
%package devel
License: LGPL
Group: Development/Libraries
Summary: Microsoft WinNT domain authentication library for development
%description
A library for authenticating with Microsoft NTLM challenge-response,
derived from Samba sources.
%description devel
Development files needed for compiling against libntlm.
%prep
%setup
%build
%configure
make
%install
%makeinstall
%files
%defattr(-,root,root)
%{_libdir}/libntlm.so*
%files devel
%defattr(-,root,root)
%{_includedir}/ntlm.h
%{_libdir}/libntlm.a
%{_libdir}/libntlm.la
%{_libdir}/pkgconfig/libntlm.pc
%doc README THANKS NEWS
|