mirror of
https://github.com/morgan9e/gnome-shell-extension-freon
synced 2026-04-14 00:14:14 +09:00
24 lines
494 B
Makefile
24 lines
494 B
Makefile
UUID = freon@UshakovVasilii_Github.yahoo.com
|
|
INSTALLDIR = $(HOME)/.local/share/gnome-shell/extensions/$(UUID)
|
|
|
|
.PHONY: all schemas install zip clean test
|
|
|
|
all: schemas
|
|
|
|
schemas:
|
|
glib-compile-schemas $(UUID)/schemas
|
|
|
|
install: schemas
|
|
rm -rf $(INSTALLDIR)
|
|
cp -r $(UUID) $(INSTALLDIR)
|
|
|
|
zip: schemas
|
|
cd $(UUID) && zip -x "*.pot" -x "*.po" -r ../$(UUID).zip *
|
|
|
|
clean:
|
|
rm -f $(UUID).zip
|
|
rm -f $(UUID)/schemas/gschemas.compiled
|
|
|
|
test: install
|
|
dbus-run-session -- gnome-shell --devkit --wayland
|