source: ProjectBuilder/0.8.5/pbconf/project-builder/deb/rules

Last change on this file was 233, checked in by Bruno Cornec, 17 years ago

Debian package update

  • Property svn:executable set to *
File size: 2.3 KB
Line 
1#!/usr/bin/make -f
2# -*- makefile -*-
3# Sample debian/rules that uses debhelper.
4# GNU copyright 1997 to 1999 by Joey Hess.
5#
6# $Id$
7#
8
9# Uncomment this to turn on verbose mode.
10#export DH_VERBOSE=1
11
12# Define package name variable for a one-stop change.
13PACKAGE_NAME = PBPKG
14
15# These are used for cross-compiling and for saving the configure script
16# from having to guess our platform (since we know it already)
17DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
18DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
19
20CFLAGS = -Wall -g
21
22ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
23 CFLAGS += -O0
24else
25 CFLAGS += -O2
26endif
27ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
28 INSTALL_PROGRAM += -s
29endif
30
31build: build-stamp
32
33build-stamp:
34 dh_testdir
35
36 # Add here commands to compile the package.
37 perl Makefile.PL
38 make
39 touch $@
40
41clean:
42 dh_testdir
43 dh_testroot
44 rm -f build-stamp
45
46 # Add here commands to clean up after the build process.
47 -$(MAKE) distclean
48
49 dh_clean
50
51install: build
52 dh_testdir
53 dh_testroot
54 dh_clean -k
55 dh_installdirs
56
57 # Add here commands to install the package into debian/linuxcoe-sd
58 $(MAKE) install DESTDIR=$(CURDIR)/debian/PBPKG
59
60
61# Build architecture-independent files here.
62binary-indep: build install
63 # We have nothing to do by default.
64
65# Build architecture-dependent files here.
66binary-arch: build install
67 dh_testdir
68 dh_testroot
69 dh_installchangelogs ChangeLog
70 dh_installdocs
71 dh_installexamples
72 # dh_install
73 # dh_installmenu
74 # dh_installdebconf
75 # dh_installlogrotate
76 # dh_installemacsen
77 # dh_installpam
78 # dh_installmime
79 # dh_python
80 # dh_installinit
81 # dh_installcron
82 # dh_installinfo
83 dh_installman
84 #dh_link usr/share/doc/linuxcoe-sd usr/share/doc/linuxcoe-sd-base
85 dh_strip
86 dh_compress
87 dh_fixperms
88 # dh_perl
89 # dh_makeshlibs
90 dh_installdeb
91 dh_shlibdeps
92 dh_gencontrol
93 dh_md5sums
94 dh_builddeb
95
96binary: binary-indep binary-arch
97 .PHONY: build clean binary-indep binary-arch binary install
Note: See TracBrowser for help on using the repository browser.