package created using the webbuild interface [release 0.2.0-1mamba;Fri Aug 17 2018]

This commit is contained in:
Silvan Calarco 2024-01-05 23:08:23 +01:00
parent d7853d4fb3
commit 8841d9bb95
2 changed files with 47 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# glide # glide
Package Management for Golang.

45
glide.spec Normal file
View File

@ -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 <silvan.calarco@mambasoft.it>
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 <silvan.calarco@mambasoft.it> 0.2.0-1mamba
- package created using the webbuild interface