File keybase-client.spec of Package keybase-client
#
# spec file for package keybase-client
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019, Matthias Bach <marix@marix.org>
#
# 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/
#
%{go_nostrip}
Name: keybase-client
Version: 2.11.0
Release: 0
Summary: Keybase command line client
License: BSD-3-Clause
Group: Productivity/Security
Url: https://github.com/keybase/client/
Source: https://github.com/keybase/client/archive/v%{version}.tar.gz
Source1: README.SUSE
BuildRequires: fdupes
BuildRequires: golang-packaging
BuildRequires: gzip
BuildRequires: systemd
%{?systemd_requires}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{go_provides}
%description
The Keybase command line client allows to manage a keybase.io account from
the command line. It includes functionality for encryption, signing, and
signature verifcation. It can create proofs to link a PGP key to other
accounts like Twitter, Github, or a Homepage. In addition, it allows to look
up keys for such accounts that people have created a proof for.
%prep
%setup -q -n client-%{version}
%build
%goprep github.com/keybase/client
%gobuild -tags production go/keybase
%install
%goinstall
%gofilelist
install -D -m 644 packaging/linux/systemd/keybase.service %{buildroot}%{_userunitdir}/keybase.service
install -D -m 644 -p %{SOURCE1} %{buildroot}/%{_docdir}/%{name}/README.SUSE
%fdupes %{buildroot}/%{_prefix}
%check
%gotest github.com/keybase/client/go/keybase
%post
%systemd_user_post keybase.service
%preun
%systemd_user_preun keybase.service
%files -f file.lst
%defattr(-,root,root)
/usr/bin/keybase
%{_userunitdir}/keybase.service
%{_docdir}/%{name}
%{_docdir}/%{name}/README.SUSE
%license go/LICENSE
%changelog