blob: 85f5d17889d9dfabb170af575fd2733b59402d64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
%global goipath github.com/varlink/go
Version: 0
%gometa
Name: %{goname}
Release: 1%{?dist}
Summary: Go bindings for varlink
License: ASL 2.0
URL: %{gourl}
Source0: %{gosource}
%description
Native Go bindings for the varlink protocol.
%package devel
Summary: %{summary}
BuildArch: noarch
%description devel
%{summary}
This package contains library source intended for
building other packages which use import path with
%{gobaseipath} prefix.
%prep
%forgesetup
%build
%gobuildroot
%install
gofiles=$(find . %{gofindfilter} -print)
%goinstall $gofiles
%check
%files devel -f devel.file-list
%license LICENSE
%doc README.md
%changelog
* Tue Mar 20 2018 <info@varlink.org> 0-1
- Version 0
|