117806d50e
Silence warnings from GNU roff 1.23 caused by \fC which is non-portable. https://src.fedoraproject.org/rpms/golang-github-cpuguy83-md2man/pull-request/3
70 lines
1.4 KiB
RPMSpec
70 lines
1.4 KiB
RPMSpec
# Generated by go2rpm 1.8.2
|
|
%bcond_without check
|
|
|
|
# https://github.com/cpuguy83/go-md2man
|
|
%global goipath github.com/cpuguy83/go-md2man
|
|
Version: 2.0.3
|
|
|
|
%gometa
|
|
|
|
%global goaltipaths github.com/cpuguy83/go-md2man/v2
|
|
|
|
%global common_description %{expand:
|
|
Converts markdown into roff (man pages).}
|
|
|
|
%global golicenses LICENSE.md
|
|
%global godocs README.md go-md2man.1.md
|
|
|
|
Name: %{goname}
|
|
Release: %autorelease
|
|
Summary: Converts markdown into roff (man pages)
|
|
|
|
License: MIT
|
|
URL: %{gourl}
|
|
Source0: %{gosource}
|
|
|
|
Provides: go-md2man = %{version}-%{release}
|
|
|
|
%description %{common_description}
|
|
|
|
%gopkg
|
|
|
|
%prep
|
|
%if %{defined rhel}
|
|
%goprep -k
|
|
# unpack vendored dependencies to GOPATH
|
|
tar c -C vendor/ . | tar x -C %{gobuilddir}/src
|
|
%else
|
|
%goprep
|
|
|
|
%generate_buildrequires
|
|
%go_generate_buildrequires
|
|
%endif
|
|
|
|
%build
|
|
%gobuild -o %{gobuilddir}/bin/go-md2man %{goipath}
|
|
%{gobuilddir}/bin/go-md2man -in go-md2man.1.md -out go-md2man.1
|
|
|
|
%install
|
|
%gopkginstall
|
|
install -m 0755 -vd %{buildroot}%{_bindir}
|
|
install -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/
|
|
|
|
install -Dpm 0644 go-md2man.1 -t %{buildroot}%{_mandir}/man1/
|
|
|
|
%if %{with check}
|
|
%check
|
|
%gocheck
|
|
%endif
|
|
|
|
%files
|
|
%license LICENSE.md %{?rhel:vendor/modules.txt}
|
|
%doc go-md2man.1.md README.md
|
|
%{_bindir}/*
|
|
%{_mandir}/man1/go-md2man.1*
|
|
|
|
%gopkgfiles
|
|
|
|
%changelog
|
|
%autochangelog
|