kobo-syncthing/Makefile

36 lines
1.3 KiB
Makefile

ARCH=arm
VERSION=1.27.6
SRC := $(shell find src -type f | tail -n+2)
SRC_REL := $(shell cd src && find ./ -type f)
TARCONTENT :=
all: KoboRoot.tgz
syncthing-linux-$(ARCH)-v$(VERSION).tar.gz:
curl -o $@ -L https://github.com/syncthing/syncthing/releases/download/v$(VERSION)/syncthing-linux-$(ARCH)-v$(VERSION).tar.gz
syncthing-linux-$(ARCH)-v$(VERSION): syncthing-linux-$(ARCH)-v$(VERSION).tar.gz
tar xf $<
src/usr/local/syncthing/syncthing: syncthing-linux-$(ARCH)-v$(VERSION)
cp syncthing-linux-$(ARCH)-v$(VERSION)/syncthing $@
src/usr/local/syncthing/AUTHORS.txt: syncthing-linux-$(ARCH)-v$(VERSION)
cp syncthing-linux-$(ARCH)-v$(VERSION)/AUTHORS.txt $@
src/usr/local/syncthing/LICENSE.txt: syncthing-linux-$(ARCH)-v$(VERSION)
cp syncthing-linux-$(ARCH)-v$(VERSION)/LICENSE.txt $@
src/usr/local/syncthing/README.txt: syncthing-linux-$(ARCH)-v$(VERSION)
cp syncthing-linux-$(ARCH)-v$(VERSION)/README.txt $@
KoboRoot.tgz: src/usr/local/syncthing/syncthing src/usr/local/syncthing/AUTHORS.txt src/usr/local/syncthing/LICENSE.txt src/usr/local/syncthing/README.txt $(SRC)
tar cvzf $@ -C src $(SRC_REL) --owner=0 --group=0
clean:
rm -r syncthing-linux-*/ syncthing-linux-*.tar.gz KoboRoot.tgz
rm -r src/usr/local/syncthing/{syncthing,AUTHORS.txt,LICENSE.txt,README.txt}
.PHONY: clean