82 lines
2 KiB
RPMSpec
82 lines
2 KiB
RPMSpec
# Generated by go2rpm 1.6.0
|
|
%bcond_without check
|
|
|
|
# https://git.sr.ht/~rjarry/aerc
|
|
%global goipath git.sr.ht/~rjarry/aerc
|
|
%global forgeurl https://git.sr.ht/~rjarry/aerc
|
|
Version: 0.10.0
|
|
%global tag 0.10.0
|
|
%global repo aerc
|
|
%global archivename %{repo}-%{tag}
|
|
%global archiveext tar.gz
|
|
%global archiveurl %{forgeurl}/archive/%{tag}.%{archiveext}
|
|
%global topdir %{archivename}
|
|
%global extractdir %{archivename}
|
|
%global scm git
|
|
|
|
%gometa
|
|
|
|
%global common_description %{expand:
|
|
Aerc is an email client that runs in your terminal. It's highly
|
|
efficient and extensible, perfect for the discerning hacker.}
|
|
|
|
%global golicenses LICENSE
|
|
%global godocs doc README.md
|
|
|
|
Name: aerc
|
|
Release: %autorelease
|
|
Summary: Email client for your terminal
|
|
|
|
License: MIT
|
|
URL: %{gourl}
|
|
Source0: %{gosource}
|
|
# Disable building of aerc that we handle manually in the SPEC
|
|
Patch0: aerc-fix-makefile.patch
|
|
|
|
BuildRequires: scdoc
|
|
BuildRequires: desktop-file-utils
|
|
BuildRequires: gnupg
|
|
Requires: notmuch
|
|
|
|
%description
|
|
%{common_description}
|
|
|
|
%prep
|
|
%goprep
|
|
%patch0 -p1
|
|
|
|
%generate_buildrequires
|
|
%go_generate_buildrequires
|
|
|
|
%build
|
|
export GOFLAGS=-tags=notmuch
|
|
export LDFLAGS="-X main.Prefix=%{_prefix} \
|
|
-X main.ShareDir=%{_datadir}/aerc \
|
|
-X main.Version=%{version} "
|
|
%gobuild -o %{gobuilddir}/bin/aerc %{goipath}
|
|
|
|
%install
|
|
install -m 0755 -vd %{buildroot}%{_bindir}
|
|
install -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/
|
|
export PREFIX=%{_prefix}
|
|
%make_install
|
|
desktop-file-validate %{buildroot}/%{_datadir}/applications/aerc.desktop
|
|
|
|
%if %{with check}
|
|
%check
|
|
%gocheck
|
|
%endif
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc doc README.md
|
|
%{_bindir}/*
|
|
%{_mandir}/man1/%{name}.1*
|
|
%{_mandir}/man1/%{name}-*.1.*
|
|
%{_mandir}/man5/%{name}-*.5.*
|
|
%{_mandir}/man7/%{name}-*.7.*
|
|
%{_datadir}/aerc
|
|
%{_datadir}/applications/aerc.desktop
|
|
|
|
%changelog
|
|
%autochangelog
|