diff --git a/Makefile b/Makefile index 12afd57..5fc8287 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ all: OS=linux ARCH=amd64 make bin OS=darwin ARCH=amd64 make bin - 7z a ambrowse.zip *.bin + 7z a ambrowse.zip *.bin README.md bin: ambrowse.go go.mod GOOS="$(OS)" GOARCH="$(ARCH)" CGO_ENABLED=0 go build -o "ambrowse-$(OS)-$(ARCH).bin" -ldflags '-s -w' diff --git a/README.md b/README.md index 661b5dd..924aa41 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,15 @@ ambrowse ambrowse extracts book metadata from amazon.com, amazon.co.uk or amazon.de pages. It watches the directory 'ambrowse' inside your HOME, digests newly saved websites and adds the metadata to a list in 'books.yaml'. It then removes those files, leaving only the metadata list. -You can find releases on [releases.gutmet.org](https://releases.gutmet.org) or build it yourself. - build ===== -If you want to build ambrowse, you need go1.11+ with module support. Clone this repository and type 'go build ambrowse.go'. +If you want to build ambrowse, you need go1.20 or higher. Clone this repository and type 'go build'. quick start =========== -Download a release from [releases.gutmet.org](https://releases.gutmet.org) and unzip it. Put the correct file for your operating system +Download a release and unzip it. Put the correct file for your operating system somewhere you can run it. Then start a command line: ```