go-md2man/go-md2man.spec

55 lines
1.5 KiB
RPMSpec
Raw Normal View History

Name: go-md2man
Version: 1.0.5
Release: 1mamba
Summary: go md to man conversion tool
Group: Development/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/cpuguy83/go-md2man
## GITSOURCE https://github.com/cpuguy83/go-md2man.git v1.0.4
Source: https://github.com/cpuguy83/go-md2man.git/v%{version}/go-md2man-%{version}.tar.bz2
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libgo-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
go md to man conversion tool.
%prep
%setup -q
%build
export GOPATH=$(readlink -f .)
repo=src/github.com/cpuguy83
mkdir -p $repo
ln -sf ../../.. $repo/go-md2man
go get ./... || true
go build -v -o go-md2man github.com/cpuguy83/go-md2man
./go-md2man -in=go-md2man.1.md -out=go-md2man.1
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
install -Dm755 go-md2man %{buildroot}%{_bindir}/go-md2man
install -Dm755 go-md2man.1 %{buildroot}%{_mandir}/man1/go-md2man.1
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/go-md2man
%{_mandir}/man1/go-md2man.1.gz
%doc LICENSE.md
%changelog
* Fri Feb 05 2016 Automatic Build System <autodist@mambasoft.it> 1.0.5-1mamba
- automatic version update by autodist
* Sat Jan 02 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.4-1mamba
- package created using the webbuild interface