upload files

This commit is contained in:
Alexey Varfolomeev
2020-02-16 11:04:15 +04:00
parent 635c700685
commit c24540a1dd
764 changed files with 9920 additions and 2 deletions

38
Makefile Normal file
View File

@@ -0,0 +1,38 @@
PREFIX ?= /usr
CURSOR_THEMES ?= $(patsubst %/index.theme,%,$(wildcard ./dist/*/index.theme))
all: build
build:
bash build.sh
clean:
-rm -rf build/ dist/ *.tar.gz
install:
mkdir -p $(DESTDIR)$(PREFIX)/share/icons
cp -R $(CURSOR_THEMES) $(DESTDIR)$(PREFIX)/share/icons
uninstall:
-rm -rf $(foreach cursor_theme,$(CURSOR_THEMES),$(DESTDIR)$(PREFIX)/share/icons/$(cursor_theme))
dist: _get_version $(CURSOR_THEMES)
_get_version:
$(eval VERSION := $(shell git show -s --format=%cd --date=format:%Y%m%d HEAD))
@echo $(VERSION)
release: _get_version
git tag -f $(VERSION)
git push origin --tags
git push origin
undo_release: _get_version
-git tag -d $(VERSION)
-git push --delete origin $(VERSION)
$(CURSOR_THEMES):
cp -f AUTHORS LICENSE $@
tar -C $(dir $@) -czf $(notdir $@)_$(VERSION).tar.gz $(notdir $@)
.PHONY: all build clean dist install uninstall _get_version release undo_release $(CURSOR_THEMES)