From 8841d9bb959bfee7661131faba704f97a60f068b Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 23:08:23 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.2.0-1mamba;Fri Aug 17 2018] --- README.md | 2 ++ glide.spec | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 glide.spec diff --git a/README.md b/README.md index cdd1ffc..b56e8e5 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # glide +Package Management for Golang. + diff --git a/glide.spec b/glide.spec new file mode 100644 index 0000000..7713e5c --- /dev/null +++ b/glide.spec @@ -0,0 +1,45 @@ +Name: glide +Version: 0.2.0 +Release: 1mamba +Summary: Package Management for Golang +Group: Applications/Development +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://glide.sh/ +## GITSOURCE https://github.com/Masterminds/glide.git v0.13.1 +Source: https://github.com/Masterminds/glide.git/%{version}/glide-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libgo-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Package Management for Golang. + +%debug_package + +%prep +%setup -q + +%build +make bootstrap + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +install -D -m 755 glide %{buildroot}%{_bindir}/glide + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/glide +%doc LICENSE.txt + +%changelog +* Fri Aug 17 2018 Silvan Calarco 0.2.0-1mamba +- package created using the webbuild interface