]> arthur.barton.de Git - nagcollect.git/commitdiff
New Makefile targets: "osxpkg" and "osxdmg"
authorAlexander Barton <alex@barton.de>
Wed, 1 Sep 2010 15:21:35 +0000 (17:21 +0200)
committerAlexander Barton <alex@barton.de>
Wed, 1 Sep 2010 15:21:35 +0000 (17:21 +0200)
 - osxpkg builds an Mac OS X multi-package (.mpkg)
 - osxdmg creates an disk image (.dmg) from the multi-package

Makefile

index bced5341a8277b6e8436c674598f9e0a745cb414..b8f538c608d960fec735431cb1cce6f4f6cbc12c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -64,6 +64,19 @@ dist: distclean
 
 distcheck: check dist
 
 
 distcheck: check dist
 
+osxpkg:
+       rel=`grep "^NagCollect " ChangeLog|awk "{print \\\$$3 }"|head -n 1`; \
+        rm -rf "../NagCollect-R$${rel}.mpkg" \
+        && packagemaker \
+            --doc "contrib/NagCollect.pmdoc" \
+            --out "../NagCollect-R$${rel}.mpkg"
+
+osxdmg: osxpkg
+       rel=`grep "^NagCollect " ChangeLog|awk "{print \\\$$3 }"|head -n 1`; \
+        rm -f "../NagCollect-R$${rel}.dmg" \
+        && hdiutil create -srcfolder \
+            "../NagCollect-R$${rel}.mpkg" "../NagCollect-R$${rel}.dmg"
+
 nagcollecttestscripts:
        COPYFILE_DISABLE=true tar -czvf nagcollecttestscripts.tgz \
         -C client/lib/tests .
 nagcollecttestscripts:
        COPYFILE_DISABLE=true tar -czvf nagcollecttestscripts.tgz \
         -C client/lib/tests .