Being suport for binary builds, AUR, Flatpak

This commit is contained in:
2025-10-17 22:46:32 -04:00
parent b9caeb7d23
commit eaf08421b0
16 changed files with 824 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
# Makefile
APP=relibre-app
.PHONY: deps run build clean
deps:
# Add dependency and generate go.sum
go get github.com/webview/webview_go@v0.1.1
go mod tidy
run:
go run .
build:
go build -trimpath -ldflags "-s -w" -o $(APP)
clean:
rm -f $(APP)