File libcryptopp.spec of Package libcryptopp
#
# spec file for package libcryptopp
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: libcryptopp
Version: 5.6.1
Release: 6
License: Public Domain
%define pkg_version 561
# This needs to be bumped manually with every ABI change since there is
# no upstream interface version information. Please keep in sync with
# Debian: http://packages.debian.org/en/source/experimental/libcrypto++
%define soname 9
Summary: Crypto++ Library
URL: http://www.cryptopp.com
Group: Development/Libraries/C and C++
# http://www.cryptopp.com/cryptopp%%{pkg_version}.zip
Source: cryptopp%{pkg_version}.tar.bz2
Source2: cryptopp.pc
Patch1: libcryptopp-shared.patch
BuildRequires: gcc-c++
BuildRequires: libstdc++-devel
BuildRequires: pkg-config
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Crypto++ Library is a free C++ class library of cryptographic schemes.
%package -n %{name}%{soname}
Summary: Cryptographic Library for C++
Group: System/Libraries
%description -n %{name}%{soname}
Crypto++ Library is a free C++ class library of cryptographic schemes.
%package -n %{name}-devel
Summary: Cryptographic Library for C++
Group: Development/Libraries/C and C++
Requires: %{name}%{soname} = %{version}
%description -n %{name}-devel
Crypto++ Library is a free C++ class library of cryptographic schemes.
%prep
%setup -q -c "%{name}-%{version}"
%patch1
%build
make %{?_smp_mflags} \
CXXFLAGS="-DNDEBUG %{optflags} -fpic -fPIC" \
DESTDIR="" \
PREFIX="%{_prefix}" \
LIB="%{_lib}" \
CXX="g++" \
VERSION="%{soname}.0.0" \
MAJOR="%{soname}" \
LDFLAGS="-pthread" \
all
%install
make \
DESTDIR="%{buildroot}" \
PREFIX="%{_prefix}" \
LIB="%{_lib}" \
CXX="g++" \
VERSION="%{soname}.0.0" \
MAJOR="%{soname}" \
install
rm -rf "%{buildroot}%{_bindir}"
mkdir %{buildroot}%{_libdir}/pkgconfig/
cp %{SOURCE2} %{buildroot}%{_libdir}/pkgconfig/
%check
make test
%post -n %{name}%{soname} -p /sbin/ldconfig
%postun -n %{name}%{soname} -p /sbin/ldconfig
%files -n %{name}%{soname}
%defattr(-,root,root)
%{_libdir}/libcryptopp.so.%{soname}
%{_libdir}/libcryptopp.so.%{soname}.*
%files -n %{name}-devel
%defattr(-,root,root)
%doc License.txt Readme.txt
%{_includedir}/cryptopp
%{_libdir}/libcryptopp.so
%{_libdir}/pkgconfig/cryptopp.pc
%changelog