~massimeddu/ditzionariusardu/trunk

« back to all changes in this revision

Viewing changes to src/deb-package/openoffice.org-hyphenation-sc/debian/rules

  • Committer: Massimeddu
  • Date: 2009-12-18 13:19:27 UTC
  • Revision ID: massimeddu@notebook-20091218131927-d5y0g6ojl51z1ro9
Some scripts improvments

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# -*- makefile -*-
 
3
# Sample debian/rules that uses debhelper.
 
4
# This file was originally written by Joey Hess and Craig Small.
 
5
# As a special exception, when this file is copied by dh-make into a
 
6
# dh-make output file, you may use that output file without restriction.
 
7
# This special exception was added by Craig Small in version 0.37 of dh-make.
 
8
# Uncomment this to turn on verbose mode.
 
9
#export DH_VERBOSE=1
 
10
configure: configure-stamp
 
11
configure-stamp:
 
12
        dh_testdir
 
13
        # Add here commands to configure the package.
 
14
        touch configure-stamp
 
15
build: build-stamp
 
16
build-stamp: configure-stamp
 
17
        dh_testdir
 
18
        # Add here commands to compile the package.
 
19
        # $(MAKE)
 
20
        #docbook-to-man debian/testpack.sgml > testpack.1
 
21
        touch $@
 
22
clean:
 
23
        dh_testdir
 
24
        dh_testroot
 
25
        rm -f build-stamp configure-stamp
 
26
        rm -rf $(CURDIR)/debian/openoffice.org-hyphenation-sc
 
27
        # Add here commands to clean up after the build process.
 
28
        # $(MAKE) clean
 
29
        dh_clean
 
30
install: build
 
31
        dh_testdir
 
32
        dh_testroot
 
33
        dh_clean -k
 
34
        dh_installdirs
 
35
        cp -r usr $(CURDIR)/debian/openoffice.org-hyphenation-sc
 
36
        # Add here commands to install the package into debian/testpack.
 
37
        # $(MAKE) DESTDIR=$(CURDIR)/debian/testpack install
 
38
# Build architecture-independent files here.
 
39
binary-indep: build install
 
40
# We have nothing to do by default.
 
41
# Build architecture-dependent files here.
 
42
binary-arch: build install
 
43
        dh_testdir
 
44
        dh_testroot
 
45
        dh_installchangelogs
 
46
        dh_installdocs
 
47
        dh_installexamples
 
48
#       dh_install
 
49
#       dh_installmenu
 
50
#       dh_installdebconf
 
51
#       dh_installlogrotate
 
52
#       dh_installemacsen
 
53
#       dh_installpam
 
54
#       dh_installmime
 
55
#       dh_pysupport
 
56
#       dh_installinit
 
57
#       dh_installcron
 
58
#       dh_installinfo
 
59
        dh_installman
 
60
        dh_link
 
61
        dh_strip
 
62
        dh_compress
 
63
        dh_fixperms
 
64
#       dh_perl
 
65
#       dh_makeshlibs
 
66
        dh_installdeb
 
67
        dh_shlibdeps
 
68
        dh_gencontrol
 
69
        dh_md5sums
 
70
        cp -r scripts/* $(CURDIR)/debian/openoffice.org-hyphenation-sc/DEBIAN
 
71
        dh_builddeb
 
72
binary: binary-indep binary-arch
 
73
 .PHONY: build clean binary-indep binary-arch binary install configure
 
74