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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Use Mageia release as major and bump minor
VERSION = 6.0
PACKAGE = desktop-common-data
NAME = desktop-common-data
TAG := $(shell echo "V$(VERSION)_$(RELEASE)" | tr -- '-.' '__')
mandir=/usr/share/man
menus: applications.menu plasma-applications.menu
menu/validated-menu: menu/applications.menu.in
xmllint --noout --dtdvalid menu/menu.dtd $?
applications.menu: menu/validated-menu
@echo -n "generating $@ "
@sed -e 's,@MAIN_DESKTOP@,GNOME,g' -e 's,@MAIN_TOOLKIT@,GTK,g' -e 's,@ALTERNATIVE_DESKTOP@,KDE,g' -e 's,@ALTERNATIVE_TOOLKIT@,Qt,g' < menu/applications.menu.in > $@
@xmllint --noout --dtdvalid menu/menu.dtd $@
@echo " OK"
plasma-applications.menu: menu/validated-menu
@echo -n "generating $@ "
@sed -e 's,@MAIN_DESKTOP@,KDE,g' -e 's,@MAIN_TOOLKIT@,Qt,g' -e 's,@ALTERNATIVE_DESKTOP@,GNOME,g' -e 's,@ALTERNATIVE_TOOLKIT@,GTK,g' < menu/applications.menu.in > $@
@xmllint --noout --dtdvalid menu/menu.dtd $@
@echo " OK"
checktag:
@if [ -e ".git" ]; then \
if ! git diff --quiet ; then \
echo not all changes are committed, aborting ; \
exit 1 ; \
fi ; \
fi
@if [ "x$(VERSION)" == "x" -o "x$(RELEASE)" = "x" ]; then \
echo usage is "make VERSION=version_number RELEASE=release_number dist" ; \
exit 1 ; \
fi
clean:
find . -type d -name '.xvpics' -o -name '*~' |xargs rm -rf
rm -f applications.menu plasma-applications.menu
# rules to build a distributable rpm
dist: menus checktag clean
@git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz > $(NAME)-$(VERSION).tar.xz;
$(info $(NAME)-$(VERSION).tar.bz2 is ready)
tag: checktag
git tag $(TAG); \
|