X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/projects.git/blobdiff_plain/9b5a94ef108feb2c9e0ed7492c4fc40813350cbc..40ce709909bf3094e77db91b111035ac0bd0ce54:/tools/make/rules diff --git a/tools/make/rules b/tools/make/rules index da98ee5..c16b52a 100755 --- a/tools/make/rules +++ b/tools/make/rules @@ -6,6 +6,8 @@ NOP = @echo "No operation for target $@" DEB = fakeroot dpkg-deb --build debian/tmp +include debian/rules.pre + default: echo "no default rule available" @@ -14,7 +16,9 @@ clean: -rm -rf debian/tmp # Bauen der kompilierten Programme und formatierten Dokumente aus den Quellen im Bauverzeichnis -build: +build: debian/build.sh sync + debian/build.sh + # Build succeeded # Bauen der kompilierten architekturabhängigen Programme aus den Quellen im Bauverzeichnis build-arch: @@ -34,10 +38,16 @@ binary-arch: # Erstellen Architektur-unabhängiger (Architecture: all) Binärpakete im übergeordneten Verzeichnis binary-indep: copy ../$(paket)_$(version)-$(build)$(_arch).deb +../build: + mkdir ../build + +sync: + bash -c 'for dirs in $$(ls); do rsync -av $$dirs ../build; done' + copy: debian/$(paket).cp debian/$(paket).cp debian/tmp -../$(paket)_$(version)-$(build)$(_arch).deb:debian/tmp/DEBIAN/control +../$(paket)_$(version)-$(build)$(_arch).deb:debian/tmp/DEBIAN/control $(add_inst_tgt) $(DEB) mv debian/tmp.deb ../$(paket)_$(version)-$(build)$(_arch).deb @@ -51,6 +61,18 @@ debian/changelog: debian/$(paket).changelog debian/setenv.sh # echo " -- Michael Wagner Sun, 11 Feb 2018 20:03:04 +0100" >> debian/changelog # mb_create_changelog +debian/tmp/DEBIAN/preinst: debian/$(paket).preinst + cp debian/$(paket).preinst debian/tmp/DEBIAN/preinst + +debian/tmp/DEBIAN/postinst: debian/$(paket).postinst + cp debian/$(paket).postinst debian/tmp/DEBIAN/postinst + +debian/tmp/DEBIAN/prerm: debian/$(paket).prerm + cp debian/$(paket).prerm debian/tmp/DEBIAN/prerm + +debian/tmp/DEBIAN/postrm: debian/$(paket).postrm + cp debian/$(paket).postrm debian/tmp/DEBIAN/postrm + # Load project specification -include rules.post