1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
#!/usr/bin/make -f
# Sample debian/rules that uses debhelper.
# This file is public domain software, originally written by Joey Hess.
#
# This version is for a hypothetical package that builds an
# architecture-dependant package, as well as an architecture-independent
# package.
module-src := x.x
module-tar := debian/ibcs-source-x.x/usr/src/ibcs-x.x.tar.gz
module-path := modules/ibcs-x.x
module-deb := debian/$(module-path)/debian
build := mkdir -p $(module-deb) ; \
cp -a CONFIG.* $(module-src)/* debian/$(module-path) ; \
install -m 644 debian/changelog debian/copyright $(module-deb) ; \
install -m 644 debian/control.modules $(module-deb)/control ; \
install -m 755 debian/postinst.modules $(module-deb)/postinst ; \
install -m 755 debian/prerm.modules $(module-deb)/prerm ; \
install -m 755 debian/rules.modules $(module-deb)/rules ; \
base-path = debian/tmp/usr
doc-path = $(base-path)/share/doc/ibcs-base
arch = i386
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This is the debhelper compatability version to use.
export DH_COMPAT=1
# This has to be exported to make some magic below work.
export DH_OPTIONS
checkroot:
# Need this version of debhelper for DH_OPTIONS to work.
dh_testversion 1.1.17
dh_testdir
dh_testroot
build: build-stamp
build-stamp:
dh_testdir
# Build the module source packages
-rm -rf debian/modules
$(subst x.x,2.0,$(build))
$(subst x.x,2.2,$(build))
# Build the base tools
make -C Tools all CONFIG=CONFIG.$(arch)
touch $@
clean: checkroot
rm -f build-stamp
-$(MAKE) -C Tools clean CONFIG=CONFIG.$(arch)
-mv README.Tools Tools/README
-mv README.VSYS VSYS/README
dh_clean
install: DH_OPTIONS=
install: build checkroot
dh_clean -k
dh_installdirs -iA /usr/src
dh_installdirs -a /usr/sbin
tar -C debian -zcf $(subst x.x,2.0,$(module-tar) $(module-path))
tar -C debian -zcf $(subst x.x,2.2,$(module-tar) $(module-path))
install Tools/lnxstamp Tools/mkmnttab Tools/trace $(base-path)/sbin
-mv Tools/README README.Tools
-mv VSYS/README README.VSYS
# Build architecture-independent files here.
# Pass -i to all debhelper commands in this target to reduce clutter.
binary-indep: DH_OPTIONS=-i
binary-indep: install
dh_installdocs
dh_installchangelogs
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
# Build architecture-dependent files here.
# Pass -a to all debhelper commands in this target to reduce clutter.
binary-arch: DH_OPTIONS=-a
binary-arch: install
dh_installdocs Doc PROD.Patches VSYS CREDITS README*
dh_installchangelogs ChangeLog
dh_installmanpages
dh_undocumented lnxstamp.8.gz mkmnttab.8.gz trace.8.gz
dh_strip
dh_link
dh_compress
dh_fixperms
dh_installmodules
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install
|