abf4c3bb50
when to change it. * gpgme.spec.in: New. Contributed by Wojciech Polak. * Makefile.am (dist-hook): New. * AUTHORS: Added Wojciech and bug reporting addresses.
65 lines
1.6 KiB
RPMSpec
65 lines
1.6 KiB
RPMSpec
# This is a template. The dist target uses it to create the real file.
|
|
Summary: GPGME - GnuPG Made Easy
|
|
Name: gpgme
|
|
Version: @pkg_version@
|
|
Release: 1
|
|
URL: http://www.gnupg.org/gpgme.html
|
|
Source: ftp://ftp.gnupg.org/gcrypt/alpha/gpgme/%{name}-%{version}.tar.gz
|
|
Group: Development/Libraries
|
|
Copyright: GPL
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}
|
|
BuildRequires: make
|
|
Prereq: /sbin/ldconfig /sbin/install-info
|
|
Requires: gnupg
|
|
|
|
%description
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier
|
|
for applications. It provides a High-Level Crypto API for encryption,
|
|
decryption, signing, signature verification and key management.
|
|
|
|
%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 infodir=$RPM_BUILD_ROOT%{_infodir}
|
|
|
|
%clean
|
|
rm -fr $RPM_BUILD_ROOT
|
|
make distclean
|
|
|
|
%post
|
|
/sbin/ldconfig
|
|
/sbin/install-info %{_infodir}/gpgme.info.gz %{_infodir}/dir
|
|
|
|
%preun
|
|
if [ "$1" = 0 ]; then
|
|
/sbin/install-info --delete %{_infodir}/gpgme.info.gz %{_infodir}/dir
|
|
fi
|
|
|
|
%postun
|
|
/sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc COPYING AUTHORS README INSTALL NEWS ChangeLog TODO THANKS
|
|
%attr(0755,root,root) %{_bindir}/gpgme-config
|
|
%attr(0755,root,root) %{_libdir}/*gpgme.so*
|
|
%attr(0755,root,root) %{_libdir}/*gpgme.la
|
|
%attr(0644,root,root) %{_libdir}/*gpgme.a
|
|
%{_includedir}/gpgme.h
|
|
%{_datadir}/aclocal/gpgme.m4
|
|
%{_infodir}/gpgme.info*
|
|
|
|
%changelog
|
|
* Mon Jul 01 2002 Wojciech Polak <ghostface@lodz.pdi.net>
|
|
- initial specfile release for GPGME.
|
|
|
|
# EOF
|