Skip to content

Commit 2124d75

Browse files
authored
Merge pull request #1 from m1kc/master
Switch to using go modules
2 parents 96bb88b + 70c55a1 commit 2124d75

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*.dll
55
*.so
66
*.dylib
7+
siphon-gtk
78

89
# Test binary, built with `go test -c`
910
*.test

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,19 @@ Siphon
33

44
Utility to send files via direct connection, written in Go and GTK-3.
55

6-
Screenshot
7-
----------
8-
96
![image](https://raw.github.com/solkin/siphon-gtk/master/art/main.png)
7+
8+
9+
Build instructions
10+
------------------
11+
12+
Assuming you have Go 1.11+ installed, type:
13+
14+
```
15+
go build
16+
```
17+
18+
This will produce `siphon-gtk` executable in the project folder.
19+
20+
Initial build of GTK bindings will take ~10 minutes,
21+
subsequent builds will be very fast, as you'd expect.

go.mod

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module github.com/solkin/siphon-gtk
2+
3+
go 1.14
4+
5+
require (
6+
github.com/gotk3/gotk3 v0.4.0
7+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
8+
)

go.sum

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
github.com/gotk3/gotk3 v0.4.0 h1:TIuhyQitGeRTxOQIV3AJlYtEWWJpC74JHwAIsxlH8MU=
2+
github.com/gotk3/gotk3 v0.4.0/go.mod h1:Eew3QBwAOBTrfFFDmsDE5wZWbcagBL1NUslj1GhRveo=
3+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
4+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
5+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)