forked from gnome-pomodoro/gnome-pomodoro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.include
25 lines (24 loc) · 1.29 KB
/
Makefile.include
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- mode: makefile -*-
uuid = [email protected]
extensiondir = $(datadir)/gnome-shell/extensions/$(uuid)
localdir = $(HOME)/.local/share/gnome-shell/extensions
# convenience command for doing Makefile variable substitutions in non-Makefile
# files (scripts, service files, etc.)
do_subst = sed -e 's|@abs_top_srcdir[@]|$(abs_top_srcdir)|g' \
-e 's|@abs_top_builddir[@]|$(abs_top_builddir)|g' \
-e 's|@bindir[@]|$(bindir)|g' \
-e 's|@libdir[@]|$(libdir)|g' \
-e 's|@libexecdir[@]|$(libexecdir)|g' \
-e 's|@localedir[@]|$(localedir)|g' \
-e 's|@pkgdatadir[@]|$(pkgdatadir)|g' \
-e 's|@pkglibdir[@]|$(pkglibdir)|g' \
-e 's|@GETTEXT_PACKAGE[@]|$(GETTEXT_PACKAGE)|g' \
-e 's|@GJS_CONSOLE[@]|$(GJS_CONSOLE)|g' \
-e 's|@PACKAGE_BUGREPORT[@]|$(PACKAGE_BUGREPORT)|g' \
-e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \
-e 's|@PACKAGE_STRING[@]|$(PACKAGE_STRING)|g' \
-e 's|@PACKAGE_TARNAME[@]|$(PACKAGE_TARNAME)|g' \
-e 's|@PACKAGE_URL[@]|$(PACKAGE_URL)|g' \
-e 's|@PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' \
-e 's|@PACKAGE[@]|$(PACKAGE)|g' \
-e 's|@UUID[@]|$(uuid)|g'