build dmg, fix plist.info, ignore dmg

git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@728 c66351dc-e62f-0410-b875-e3a5c0b9693f
This commit is contained in:
Evgeny Gryaznov 2010-01-17 00:23:25 +00:00
parent 3d8cc81ced
commit 0656e7d8f2
3 changed files with 8 additions and 1 deletions

View File

@ -38,7 +38,7 @@
<string>1.6+</string> <string>1.6+</string>
<key>ClassPath</key> <key>ClassPath</key>
<array> <array>
<string>$JAVAROOT/org.mibew.jabber.jar</string> <string>$JAVAROOT/org.mibew.notifier.jar</string>
<string>$JAVAROOT/smackx.jar</string> <string>$JAVAROOT/smackx.jar</string>
<string>$JAVAROOT/smackx-jingle.jar</string> <string>$JAVAROOT/smackx-jingle.jar</string>
<string>$JAVAROOT/smackx-debug.jar</string> <string>$JAVAROOT/smackx-debug.jar</string>

View File

@ -17,6 +17,7 @@
<fileset dir="${osxJarPath}"> <fileset dir="${osxJarPath}">
<include name="*.jar"/> <include name="*.jar"/>
</fileset> </fileset>
<fileset dir="."><include name="*.dmg"/></fileset>
</delete> </delete>
</target> </target>
<target depends="init" name="build"> <target depends="init" name="build">

View File

@ -0,0 +1,6 @@
#!/bin/sh
rm -rf *.dmg
hdiutil create mibew-notifier-temp.dmg -volname "Mibew Notifier 1.0" -fs HFS+ -srcfolder "Mibew Notifier.app"
hdiutil convert "mibew-notifier-temp.dmg" -format UDZO -imagekey zlib-level=9 -o "mibew-1.0.0.dmg"
rm mibew-notifier-temp.dmg