aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKylie McClain <somasis@exherbo.org>2015-11-29 22:59:57 -0500
committerKylie McClain <somasis@exherbo.org>2015-11-29 23:00:12 -0500
commitbac5b2a5fb925b9dda441c7f03a3014ba9edda17 (patch)
tree8577679ac8bb9c7b1bccbfe4ae8782c80597444d
parentef2e48d6417d20e2a5b44a2b230ed2e631f45bc0 (diff)
Various build system updates/tweaks
-rw-r--r--Makefile11
m---------numix-themes0
2 files changed, 8 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 94c3bfa..185a40a 100644
--- a/Makefile
+++ b/Makefile
@@ -78,7 +78,10 @@ help:
@echo " If you do not want to run \`git submodules update\` during the prepare"
@echo " phase, set \${no_git}; ex. \`no_git=true make prepare\`"
-prepare:
+numix-themes:
+ git clone https://github.com/shimmerproject/Numix $(BASE)
+
+prepare: numix-themes
[[ "$(no_git)" ]] || git submodule init
[[ "$(no_git)" ]] || git submodule update
cd $(BASE) && rm -rf xfwm4 metacity-1 openbox-3 xfce-notify-4.0 index.theme
@@ -87,7 +90,6 @@ Shiki-%:
@echo "Generating $@ from $(BASE)..."
cp -r $(BASE) $@
sed -i $@/gtk-2.0/gtkrc $@/gtk-3.0/*.css $@/gtk-3.0/assets/*.svg \
- $@/gtk-3.0/apps/*.css \
-e 's/#d64937/#$($@_selected)/g' \
-e 's/#2d2d2d/#$($@_menubar_bg)/g'
@@ -96,7 +98,10 @@ generate: prepare
clean:
rm -rf $(BASE)
- $(foreach COLOR,$(COLORS),rm -rf Shiki-$(COLOR)/;)
+ @for color in $(COLORS);do \
+ echo "rm -rf Shiki-$$color"; \
+ rm -rf "Shiki-$$color"; \
+ done
install: generate
mkdir -p $(DESTDIR)$(PREFIX)/share/themes
diff --git a/numix-themes b/numix-themes
deleted file mode 160000
-Subproject d6d58541dbd5cbb4de1b6303c9e5bf3f2712f33