File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 22 go get github.com/stashapp/stash@develop && \
33 go mod tidy
44
5+ # videohashes
6+
57windows :
68 GOOS=windows GOARCH=amd64 EXTRA_LDFLAGS=' -extldflags=-static -s -w' \
79 go build -o dist/videohashes.exe ./cmd/videohashes
@@ -15,3 +17,35 @@ macos:
1517 go build -o dist/videohashes-macos ./cmd/videohashes
1618
1719build : windows linux macos
20+
21+ # duration
22+
23+ duration-windows :
24+ GOOS=windows GOARCH=amd64 EXTRA_LDFLAGS=' -extldflags=-static -s -w' \
25+ go build -o dist/duration.exe ./cmd/duration
26+
27+ duration-linux :
28+ GOOS=linux GOARCH=amd64 EXTRA_LDFLAGS=' -extldflags=-static -s -w' \
29+ go build -o dist/duration-linux ./cmd/duration
30+
31+ duration-macos :
32+ GOOS=darwin GOARCH=amd64 EXTRA_LDFLAGS=' -extldflags=-static -s -w' \
33+ go build -o dist/duration-macos ./cmd/duration
34+
35+ duration-build : duration-windows duration-linux duration-macos
36+
37+ # phashcompare
38+
39+ phashcompare-windows :
40+ GOOS=windows GOARCH=amd64 EXTRA_LDFLAGS=' -extldflags=-static -s -w' \
41+ go build -o dist/phashcompare.exe ./cmd/phashcompare
42+
43+ phashcompare-linux :
44+ GOOS=linux GOARCH=amd64 EXTRA_LDFLAGS=' -extldflags=-static -s -w' \
45+ go build -o dist/phashcompare-linux ./cmd/phashcompare
46+
47+ phashcompare-macos :
48+ GOOS=darwin GOARCH=amd64 EXTRA_LDFLAGS=' -extldflags=-static -s -w' \
49+ go build -o dist/phashcompare-macos ./cmd/phashcompare
50+
51+ phashcompare-build : phashcompare-windows phashcompare-linux phashcompare-macos
You can’t perform that action at this time.
0 commit comments