1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Summary: Strong GPG verification of git tags
Name: git-evtag
Version: 2016.1
Release: 1%{?dist}
License: LGPLv2+
#VCS: https://github.com/cgwalters/git-evtag
URL: https://github.com/cgwalters/git-evtag
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
BuildRequires: gcc
# We always run autogen.sh
BuildRequires: autoconf automake libtool
BuildRequires: pkgconfig(libgit2)
BuildRequires: pkgconfig(gio-2.0)
Requires: git
Requires: gnupg2
%description
git-evtag wraps "git tag" functionality, adding stronger checksums
that cover the complete content.
%prep
%autosetup
%build
env NOCONFIGURE=1 ./autogen.sh
%configure --disable-silent-rules
%make_build
%install
%make_install INSTALL="install -p -c"
%files
%license COPYING
%doc README.md
%{_bindir}/%{name}
|