annotate debian/rules @ 764:f9b070eedd40

Made the Debian package create correct menu entries and mime type associations. git-svn-id: svn://svn.code.sf.net/p/universalindent/code/trunk@1041 59b1889a-e5ac-428c-b0c7-476e01d41282
author thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
date Wed, 13 Apr 2011 06:07:18 +0000
parents dc9b1d274117
children ca899a323c52
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
1 #!/usr/bin/make -f
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
2
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
3 # Uncomment this to turn on verbose mode.
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
4 #export DH_VERBOSE=1
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
5
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
6 include /usr/share/quilt/quilt.make
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
7
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
8 configure: configure-stamp
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
9 configure-stamp: $(QUILT_STAMPFN)
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
10 dh_testdir
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
11
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
12 # Fix executable problem
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
13 find . -type f -exec chmod a-x '{}' \;
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
14 chmod a+x debian/rules
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
15
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
16 qmake-qt4
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
17
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
18 touch configure-stamp
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
19
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
20 build: build-stamp
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
21 build-stamp: configure-stamp
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
22 dh_testdir
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
23
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
24 $(MAKE)
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
25
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
26 touch $@
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
27
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
28 clean: unpatch
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
29 dh_testdir
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
30 dh_testroot
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
31 rm -f build-stamp configure-stamp
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
32
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
33 [ ! -f Makefile ] || $(MAKE) distclean
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
34 rm -rf debug release
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
35 rm -f translations/*.qm Makefile.* doc/universalindentgui.1.gz
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
36
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
37 dh_clean
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
38
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
39 install: build
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
40 dh_testdir
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
41 dh_testroot
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
42 dh_prep
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
43 dh_installdirs
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
44
621
7e6053006054 Slightly adapted the debian build files.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 612
diff changeset
45 $(MAKE) INSTALL_ROOT=$(CURDIR)/debian/universalindentgui install
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
46
628
689cc685f122 Added a menu icon. But on Ubuntu it still doesn't show up in the Gnome menu.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 626
diff changeset
47 mkdir -p $(CURDIR)/debian/universalindentgui/usr/share/pixmaps
689cc685f122 Added a menu icon. But on Ubuntu it still doesn't show up in the Gnome menu.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 626
diff changeset
48 cp $(CURDIR)/resources/universalIndentGUI_32x32.xpm $(CURDIR)/debian/universalindentgui/usr/share/pixmaps/
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
49
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
50 # Remove shellindent
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
51 #rm -f debian/universalindentgui/usr/share/universalindentgui/indenters/example.sh
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
52 #rm -f debian/universalindentgui/usr/share/universalindentgui/indenters/shellindent.awk
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
53 #rm -f debian/universalindentgui/usr/share/universalindentgui/indenters/uigui_shellindent.ini
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
54
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
55 # Fix lintian warnings
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
56 find debian -type f -name '*.rb' | xargs chmod a+x
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
57
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
58 # Install lintian override
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
59 install -D -p -m644 debian/universalindentgui.lintian \
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
60 debian/universalindentgui/usr/share/lintian/overrides/universalindentgui
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
61
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
62 # Build architecture-independent files here.
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
63 binary-indep: install
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
64 # We have nothing to do by default.
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
65
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
66 # Build architecture-dependent files here.
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
67 binary-arch: install
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
68 dh_testdir
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
69 dh_testroot
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
70 dh_installchangelogs CHANGELOG.txt
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
71 dh_installdocs
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
72 dh_installexamples
764
f9b070eedd40 Made the Debian package create correct menu entries and mime type associations.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 686
diff changeset
73 dh_install debian/universalindentgui.desktop usr/share/applications
621
7e6053006054 Slightly adapted the debian build files.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 612
diff changeset
74 dh_installmenu
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
75 dh_installman
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
76 dh_link
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
77 dh_strip
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
78 dh_compress
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
79 dh_fixperms
686
dc9b1d274117 Updated the Debian build files to be closer to the changes done by the new Debian package maintainer Fathi Boudra.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents: 628
diff changeset
80 dh_makeshlibs
612
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
81 dh_installdeb
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
82 dh_shlibdeps
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
83 dh_gencontrol
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
84 dh_md5sums
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
85 dh_builddeb
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
86
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
87 binary: binary-indep binary-arch
e877a8d5c6b3 Added files for creating debian packages. How to build with these files read at: http://wiki.ubuntu.com/PackagingGuide/Complete. Normally calling "debuild -us -uc" and "debuild -S -us -uc" in the debian dir will do it.
thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
parents:
diff changeset
88 .PHONY: build clean binary-indep binary-arch binary install configure