Fixed makefile space issues and updated readme

This commit is contained in:
Jarcode
2018-01-17 17:51:07 -08:00
parent 91e1a743c8
commit fc45b8d032
2 changed files with 4 additions and 4 deletions

View File

@@ -70,9 +70,9 @@ clean:
.PHONY: install
install:
install -Dm755 glava $(DESTDIR)/usr/bin/glava
install -d $(DESTDIR)/$(SHADER_DIR)
cp -Rv shaders/* $(DESTDIR)/$(SHADER_DIR)
install -Dm755 glava "$(DESTDIR)/usr/bin/glava"
install -d "$(DESTDIR)/$(SHADER_DIR)"
cp -Rv shaders/* "$(DESTDIR)/$(SHADER_DIR)"
.PHONY: uninstall
uninstall:

View File

@@ -3,7 +3,7 @@
GLava is an (in development) OpenGL audio spectrum visualizer. Its primary use case is for desktop widgets or backgrounds. Displayed to the left is the `radial` shader module running in GLava.
**Compiling** (after meeting the requirements)**:**
**Compiling** (Or use the [`glava-git` AUR package](https://aur.archlinux.org/packages/glava-git/))**:**
```bash
$ git clone --recursive https://github.com/wacossusca34/glava