|
Last change
on this file was 896, checked in by Bruno Cornec, 16 years ago |
r3590@localhost: bruno | 2009-11-07 02:45:08 +0100
- Mondorescue 2.2.9.1 is now the next beta
- Improved uild files for non rpm Mondorescue 2.2.10
- ChangeLog file now created by pb_cms_log
|
-
Property svn:executable
set to
*
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | #!/usr/bin/make -f
|
|---|
| 2 | # Sample debian/rules that uses debhelper.
|
|---|
| 3 | # GNU copyright 1997 to 1999 by Joey Hess.
|
|---|
| 4 |
|
|---|
| 5 | # Uncomment this to turn on verbose mode.
|
|---|
| 6 | #export DH_VERBOSE=1
|
|---|
| 7 |
|
|---|
| 8 | # Define package name for a one-stop change.
|
|---|
| 9 | PACKAGE_NAME = PBPKG
|
|---|
| 10 |
|
|---|
| 11 | # PREFIX for installation
|
|---|
| 12 | export HEAD=$(CURDIR)/debian/$(PACKAGE_NAME)
|
|---|
| 13 | export PREFIX=/usr
|
|---|
| 14 | export CONFDIR=/etc
|
|---|
| 15 | export MANDIR=$(PREFIX)/share/man
|
|---|
| 16 | #export DOCDIR=$(PREFIX)/share/doc
|
|---|
| 17 | export DATADIR=$(PREFIX)/share
|
|---|
| 18 | export MINDI_CACHE=/var/cache/$(PACKAGE_NAME)
|
|---|
| 19 | export PKGBUILDMINDI=true
|
|---|
| 20 |
|
|---|
| 21 | configure:
|
|---|
| 22 | # Nothing to configure in this package.
|
|---|
| 23 |
|
|---|
| 24 | build:
|
|---|
| 25 | # Nothing to build in this package.
|
|---|
| 26 |
|
|---|
| 27 | clean:
|
|---|
| 28 | dh_testdir
|
|---|
| 29 | dh_testroot
|
|---|
| 30 | dh_clean
|
|---|
| 31 |
|
|---|
| 32 | install:
|
|---|
| 33 | dh_testdir
|
|---|
| 34 | dh_testroot
|
|---|
| 35 | dh_clean -k
|
|---|
| 36 | dh_installdirs
|
|---|
| 37 | # Build the installation tree:
|
|---|
| 38 | ./install.sh
|
|---|
| 39 |
|
|---|
| 40 | # Build architecture-independent files here.
|
|---|
| 41 | binary-indep: install
|
|---|
| 42 | # We have nothing to do by default.
|
|---|
| 43 |
|
|---|
| 44 | # Build architecture-dependent files here.
|
|---|
| 45 | binary-arch: install
|
|---|
| 46 | dh_testdir
|
|---|
| 47 | dh_testroot
|
|---|
| 48 | dh_installchangelogs ChangeLog
|
|---|
| 49 | dh_installdocs
|
|---|
| 50 | dh_installexamples
|
|---|
| 51 | dh_link
|
|---|
| 52 | dh_strip
|
|---|
| 53 | dh_compress
|
|---|
| 54 | dh_fixperms
|
|---|
| 55 | dh_installdeb
|
|---|
| 56 | dh_gencontrol
|
|---|
| 57 | dh_md5sums
|
|---|
| 58 | dh_builddeb
|
|---|
| 59 |
|
|---|
| 60 | binary: binary-indep binary-arch
|
|---|
| 61 | .PHONY: build clean binary-indep binary-arch binary install configure
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.