From a137493613c3796424a1b87f1d59db0760d28f24 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 23:19:44 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.0.4-1mamba;Sat Jan 02 2016] --- README.md | 2 ++ go-md2man.spec | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 go-md2man.spec diff --git a/README.md b/README.md index b856383..4d4eeb3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # go-md2man +go md to man conversion tool. + diff --git a/go-md2man.spec b/go-md2man.spec new file mode 100644 index 0000000..08249cc --- /dev/null +++ b/go-md2man.spec @@ -0,0 +1,51 @@ +Name: go-md2man +Version: 1.0.4 +Release: 1mamba +Summary: go md to man conversion tool +Group: Development/Tools +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +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 +* Sat Jan 02 2016 Silvan Calarco 1.0.4-1mamba +- package created using the webbuild interface