|
Last change
on this file since 2119 was 1054, checked in by Bruno Cornec, 15 years ago |
r3872@localhost: bruno | 2010-06-10 12:15:05 +0200
In version devel (3+) mindi is renamed as mrmini
|
-
Property svn:executable
set to
*
|
|
File size:
1.2 KB
|
| Rev | Line | |
|---|
| [384] | 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 LIBDIR=$(PREFIX)/lib
|
|---|
| 18 | export CACHEDIR=/var/cache/$(PACKAGE_NAME)
|
|---|
| [1054] | 19 | export PKGBUILDMRMINI=true
|
|---|
| [384] | 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.