diff --git a/.gitignore b/.gitignore index 3348a7f..ea5d38c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /target *.mp4 *.srt -*.key \ No newline at end of file +*.key +*.tar.gz diff --git a/Makefile b/Makefile index c031b58..c35b622 100644 --- a/Makefile +++ b/Makefile @@ -18,4 +18,7 @@ uninstall: rm -f "$(DESTDIR)$(PREFIX)/bin/$(PKGNAME)" rm -f "$(DESTDIR)$(PREFIX)/man/man1/$(PKGNAME).1" +aur: build + tar --transform 's/.*\///g' -czf $(PKGNAME).tar.gz target/release/$(PKGNAME) $(PKGNAME).1 + .PHONY: build build-debug install clean uninstall aur