Name: libntlm Version: 1.2 Release: 1 Summary: NTLM authentication library Group: System Environment/Libraries License: LGPLv2+ URL: http://josefsson.org/%{name}/ Source0: http://josefsson.org/%{name}/releases/%{name}-%{version}.tar.gz Source1: http://josefsson.org/%{name}/releases/%{name}-%{version}.tar.gz.sig BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: pkg-config %description A library for authenticating with Microsoft NTLM challenge-response, derived from Samba sources. The library is available as 32-bit and 64-bit. %package devel Summary: Development files for %{name} Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: pkg-config %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. If you are compiling a 32-bit program, no special compiler options are needed. If you are compiling a 64-bit program, you have to compile and link your application with "cc -q64" or "gcc -maix64". %prep %setup -q %build # setup environment for 32-bit and 64-bit builds export AR="ar -X32_64" export NM="nm -X32_64" # first build the 64-bit version export CC="cc -q64" ./configure \ --prefix=%{_prefix} \ --enable-shared --disable-static make %{?_smp_mflags} cp .libs/libntlm.so.0 . make distclean # now build the 32-bit version export CC="cc" ./configure \ --prefix=%{_prefix} \ --enable-shared --disable-static make %{?_smp_mflags} # add the 64-bit shared objects to the shared library containing already the # 32-bit shared objects ${AR} -q .libs/libntlm.a ./libntlm.so.0 %install [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT} make DESTDIR=${RPM_BUILD_ROOT} install ( cd ${RPM_BUILD_ROOT} for dir in include lib do mkdir -p usr/${dir} cd usr/${dir} ln -sf ../..%{_prefix}/${dir}/* . cd - done ) %clean [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT} %files %defattr(-,root,system,-) %doc AUTHORS COPYING README THANKS %{_libdir}/*.a /usr/lib/*.a %files devel %defattr(-,root,system,-) %doc COPYING %{_includedir}/* %{_libdir}/*.la %{_libdir}/pkgconfig/*.pc /usr/include/* /usr/lib/*.la %changelog * Thu Oct 07 2010 Michael Perzl - 1.2-1 - updated to version 1.2 * Mon May 11 2009 Michael Perzl - 1.1-1 - updated to version 1.1 * Tue Apr 15 2008 Michael Perzl - 1.0-1 - first version for AIX V5.1 and higher