forked from pool/yubico-piv-tool
db7a4c251b
OBS-URL: https://build.opensuse.org/request/show/335876 OBS-URL: https://build.opensuse.org/package/show/security/yubico-piv-tool?expand=0&rev=6
94 lines
3.0 KiB
RPMSpec
94 lines
3.0 KiB
RPMSpec
#
|
|
# spec file for package yubico-piv-tool
|
|
#
|
|
# Copyright (c) 2015 SUSE LINUX 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/
|
|
#
|
|
|
|
|
|
%define soname 1
|
|
|
|
Name: yubico-piv-tool
|
|
Version: 1.0.3
|
|
Release: 0
|
|
Summary: Yubico YubiKey NEO CCID Manager
|
|
License: BSD-2-Clause
|
|
Group: Productivity/Networking/Security
|
|
Url: https://developers.yubico.com/
|
|
Source0: https://developers.yubico.com/yubico-piv-tool/Releases/%{name}-%{version}.tar.gz
|
|
Source1: https://developers.yubico.com/yubico-piv-tool/Releases/%{name}-%{version}.tar.gz.sig
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: libtool
|
|
BuildRequires: pcsc-lite-devel
|
|
BuildRequires: pkg-config
|
|
BuildRequires: pkgconfig(openssl)
|
|
Requires: libykpiv%{soname} = %{version}
|
|
|
|
%description
|
|
This is a command line tool to interact with the PIV applet on a YubiKey NEO.
|
|
Among other functions it supports, generating keys on device, importing keys
|
|
and certificates and creating certificate requests.
|
|
|
|
%package -n libykpiv%{soname}
|
|
Summary: Yubikey NEO PIV applet library
|
|
Group: Productivity/Networking/Security
|
|
|
|
%description -n libykpiv%{soname}
|
|
This is a low-level library to interact the PIV applet on a YubiKey NEO
|
|
|
|
%package -n libykpiv-devel
|
|
Summary: Development files for Yubikey NEO PIV applet library
|
|
Group: Development/Libraries/C and C++
|
|
Requires: libykpiv%{soname} = %{version}
|
|
|
|
%description -n libykpiv-devel
|
|
This package contains the header file needed to develop applications that use
|
|
Yubikey NEO PIV applet library.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure --enable-static=no --with-backend=pcsc
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%install
|
|
%{__make} install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p"
|
|
%{__rm} -rf %{buildroot}/%{_libdir}/*.la
|
|
|
|
%post -n libykpiv%{soname} -p /sbin/ldconfig
|
|
|
|
%postun -n libykpiv%{soname} -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc COPYING NEWS ChangeLog README
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man1/*
|
|
|
|
%files -n libykpiv%{soname}
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libykpiv.so.%{soname}
|
|
%{_libdir}/libykpiv.so.%{soname}.0.8
|
|
|
|
%files -n libykpiv-devel
|
|
%defattr(-,root,root)
|
|
%dir %{_includedir}/ykpiv/
|
|
%{_includedir}/ykpiv/*
|
|
%{_libdir}/libykpiv.so
|
|
%{_libdir}/pkgconfig/ykpiv.pc
|
|
|
|
%changelog
|