summaryrefslogtreecommitdiff
path: root/share/applications/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'share/applications/Makefile')
-rw-r--r--share/applications/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/share/applications/Makefile b/share/applications/Makefile
new file mode 100644
index 0000000..5f4da44
--- /dev/null
+++ b/share/applications/Makefile
@@ -0,0 +1,24 @@
+include ../../config.mk
+
+SOURCES = ${shell echo *.pre}
+TARGETS = ${SOURCES:.pre=.desktop}
+
+all: ${TARGETS}
+
+.pre.desktop:
+ sed \
+ -e 's/\$$VERSION\$$/${VERSION}/g' \
+ -e 's/\$$DATE\$$/'"$$(date '+%B %d, %Y')"/g \
+ -e 's/\$$MAN_CURL\$$/${MAN_CURL}/' \
+ -e 's/\$$MAN_DEBUG\$$/${MAN_DEBUG}/' \
+ -e 's/\$$MAN_EXIF\$$/${MAN_EXIF}/' \
+ -e 's/\$$MAN_XINERAMA\$$/${MAN_XINERAMA}/' \
+ -e 's:\$$IMAGEDIR\$$:${image_dir}:' \
+ < ${@:.desktop=.pre} > $@
+
+clean:
+ rm -f *.1
+
+.SUFFIXES: .pre .desktop
+
+.PHONY: clean