c825f470cb
redbear-ci / check (push) Has been cancelled
kf6-kwallet's kwalletbackend hard-requires LibGcrypt 1.5.0 for PBKDF2 key derivation and the GPG-backed wallet format. Vendor both libraries under the full-fork model (committed source/, offline-reproducible) and add libgcrypt to kf6-kwallet's dependencies. Release tarballs ship a pre-generated configure and a config.sub that already recognises the *-redox triple, so no autotools regeneration is needed at cook time. libgpg-error supplies a generic pthread-backed gpgrt_lock_t for Redox via its build script; the test-only redox.patch (tms/times stub) is baked into libgcrypt's source and kept alongside for future version bumps. Promoted from the stale recipes/wip copies (now .disabled).
58 lines
1.3 KiB
RPMSpec
58 lines
1.3 KiB
RPMSpec
# This is a template. The dist target uses it to create the real file.
|
|
Summary: libgpg-error
|
|
Name: libgpg-error
|
|
Version: 1.55
|
|
Release: 1
|
|
URL: ftp://ftp.gnupg.org/gcrypt/alpha/libgpg-error/
|
|
Source: ftp://ftp.gnupg.org/gcrypt/alpha/libgpg-error/%{name}-%{version}.tar.gz
|
|
Group: Development/Libraries
|
|
Copyright: LGPL
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}
|
|
BuildRequires: make
|
|
Prereq: /sbin/ldconfig
|
|
|
|
%description
|
|
This is a library that defines common error values for all GnuPG
|
|
components. Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt,
|
|
pinentry, SmartCard Daemon and possibly more in the future.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
CFLAGS="$RPM_OPT_FLAGS"; export CFLAGS
|
|
./configure --prefix=/usr
|
|
make
|
|
|
|
%install
|
|
rm -fr $RPM_BUILD_ROOT
|
|
mkdir -p $RPM_BUILD_ROOT
|
|
make install prefix=$RPM_BUILD_ROOT/usr
|
|
|
|
%clean
|
|
rm -fr $RPM_BUILD_ROOT
|
|
make distclean
|
|
|
|
%post
|
|
/sbin/ldconfig
|
|
|
|
%postun
|
|
/sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc COPYING COPYING.LIB AUTHORS README INSTALL NEWS ChangeLog
|
|
%attr(0755,root,root) %{_bindir}/gpg-error-config
|
|
%attr(0755,root,root) %{_bindir}/gpg-error
|
|
%attr(0755,root,root) %{_libdir}/*gpg-error.so*
|
|
%attr(0755,root,root) %{_libdir}/*gpg-error.la
|
|
%attr(0644,root,root) %{_libdir}/*gpg-error.a
|
|
%{_includedir}/gpg-error.h
|
|
%{_datadir}/aclocal/gpg-error.m4
|
|
|
|
%changelog
|
|
* Wed Sep 3 2003 Robert Schiele <rschiele@uni-mannheim.de>
|
|
- initial specfile.
|
|
|
|
# EOF
|