banshee r4733 - trunk/banshee/build/osx
- From: abock svn gnome org
- To: svn-commits-list gnome org
- Subject: banshee r4733 - trunk/banshee/build/osx
- Date: Fri, 24 Oct 2008 19:42:15 +0000 (UTC)
Author: abock
Date: Fri Oct 24 19:42:14 2008
New Revision: 4733
URL: http://svn.gnome.org/viewvc/banshee?rev=4733&view=rev
Log:
Fixed DMG builder
Modified:
trunk/banshee/build/osx/make-dmg-bundle.sh
Modified: trunk/banshee/build/osx/make-dmg-bundle.sh
==============================================================================
--- trunk/banshee/build/osx/make-dmg-bundle.sh (original)
+++ trunk/banshee/build/osx/make-dmg-bundle.sh Fri Oct 24 19:42:14 2008
@@ -5,7 +5,7 @@
./make-app-bundle.sh
VOLUME_NAME=Banshee
-DMG_SRC="Banshee.app"
+DMG_APP=Banshee.app
DMG_FILE=$VOLUME_NAME.dmg
MOUNT_POINT=$VOLUME_NAME.mounted
@@ -13,7 +13,7 @@
rm -f $DMG_FILE.master
# Compute an approximated image size in MB, and bloat by 1MB
-image_size=$(du -ck $DMG_SRC | tail -n1 | cut -f1)
+image_size=$(du -ck $DMG_APP | tail -n1 | cut -f1)
image_size=$((($image_size + 1000) / 1000))
echo "Creating disk image (${image_size}MB)..."
@@ -24,9 +24,7 @@
echo "Populating image..."
-for src in $DMG_SRC; do
- cp -rf $src $MOUNT_POINT
-done
+mv $DMG_APP $MOUNT_POINT
find $MOUNT_POINT -type d -iregex '.*\.svn$' &>/dev/null | xargs rm -rf
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]