X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=Jamrules;h=490aa870cf3c56b0c4af53ed32fa9d9bf7774b69;hb=8425b4e14041ee668806cff29e458ae73bcd894f;hp=6b15be6a3ed6acca83c6ca33346dfa0266e05110;hpb=cdba71d1dca214142fdcca4c52f7672252752c2e;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/Jamrules b/Jamrules index 6b15be6a..490aa870 100644 --- a/Jamrules +++ b/Jamrules @@ -1,7 +1,7 @@ # $Id: Jamrules,v 1.59 2005/11/04 16:06:21 titer Exp $ # # This file is part of the HandBrake source code. -# Homepage: . +# Homepage: . # It may be used under the terms of the GNU General Public License. include config.jam ; @@ -11,13 +11,32 @@ if ! $(DEFINES) Exit "Please run ./configure first." ; } -HB_VERSION = 0.7.0 ; -HB_BUILD = 2005110400 ; +# This line needs to be manually bumped for each release. +HB_VERSION = 0.9.3 ; + +# If the user configured with the --snapshot argument, +# generate version and build numbers that include +# the svn revision and are marked as unstable. +if $(SNAPSHOT) = 1 +{ +HB_VERSION = "svn$(SVN_REV)" ; +HB_BUILD = "$(BUILD_DATE)01" ; +APPCAST_URL = "http://handbrake.fr/appcast_unstable.xml" ; +} +else +{ +HB_BUILD = "$(BUILD_DATE)00" ; +APPCAST_URL = "http://handbrake.fr/appcast.xml" ; +} + DEFINES += HB_VERSION=\\\"$(HB_VERSION)\\\" HB_BUILD=$(HB_BUILD) ; LANGUAGES = fr de it pl ru nl es pt ja ; RM = rm -rf ; -# Build HandBrake.app using Xcode +# Build HandBrake.app using Xcode -- +# Getting the right version and build numbers +# requires editing the .plist and specifying +# extra CFLAGs. rule OSXApp { Depends exe : $(<) ; @@ -27,8 +46,8 @@ rule OSXApp actions OSXApp { $(RM) $(<) macosx/build/HandBrake.app && \ - ( cd macosx && xcodebuild ) && \ - mv macosx/build/Default/HandBrake.app $(<) && \ + ( cd macosx && \ + xcodebuild HB_BUILD="$(HB_BUILD)" HB_VERSION="$(HB_VERSION)" APPCAST_URL="$(APPCAST_URL)" -target libhb -target HandBrake -target HandBrakeCLI ) && \ for i in $(LANGUAGES) ; do \ ( cd $(<)/Contents/Resources && \ cp -r English.lproj $i.lproj && \ @@ -49,13 +68,13 @@ actions OSXPackage cp CREDITS "HandBrake $(HB_VERSION)/CREDITS.txt" && \ cp THANKS "HandBrake $(HB_VERSION)/THANKS.txt" && \ ( echo "[InternetShortcut]" && \ - echo "URL=http://handbrake.m0k.org/" ) > \ + echo "URL=http://handbrake.fr/" ) > \ "HandBrake $(HB_VERSION)/HandBrake Homepage.url" && \ ( echo "[InternetShortcut]" && \ - echo "URL=http://handbrake.m0k.org/forum/" ) > \ + echo "URL=http://forum.handbrake,fr/" ) > \ "HandBrake $(HB_VERSION)/HandBrake Forums.url" && \ ( echo "[InternetShortcut]" && \ - echo "URL=http://handbrake.m0k.org/contribute.php" ) > \ + echo "URL=http://handbrake.fr/?article=development" ) > \ "HandBrake $(HB_VERSION)/Contribute.url" && \ cp -r HandBrake.app "HandBrake $(HB_VERSION)" && \ zip -9 -r $(<) "HandBrake $(HB_VERSION)" && \