diff options
author | handbrake <[email protected]> | 2006-01-14 13:24:23 +0000 |
---|---|---|
committer | handbrake <[email protected]> | 2006-01-14 13:24:23 +0000 |
commit | 951be4e0b69aa652c992124025c862c4f1660937 (patch) | |
tree | 82935838e945a8aad290741b71aeeecc09058184 /Jamrules | |
parent | dc8de40de13c3f3e643b980a95ef48ccafb542e3 (diff) |
HandBrake 0.6.0-test2
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@11 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'Jamrules')
-rw-r--r-- | Jamrules | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -8,7 +8,7 @@ LINK = g++ ; OPTIM = -O3 -funroll-loops ; # HandBrake defines -HB_VERSION = 0.6.0-test1 ; +HB_VERSION = 0.6.0-test2 ; DEFINES = HB_$(OS) HB_VERSION=\\\"$(HB_VERSION)\\\" ; #DEFINES += HB_NOMMX ; @@ -100,10 +100,10 @@ rule OSXApp } actions BuildOSXApp { - $(RM) $(1) ; - ( cd macosx && xcodebuild ) && \ + $(RM) $(1) && \ + ( cd macosx && xcodebuild ) && \ cp -r macosx/build/HandBrake.app $(1) && \ - for i in French German; do \ + for i in French German it pl ru; do \ ( cd $(1)/Contents/Resources && \ cp -r English.lproj $i.lproj && \ cp ../../../macosx/i18n/$i.strings \ @@ -118,8 +118,13 @@ actions BuildOSXPackage { rm -rf $(1) "HandBrake $(HB_VERSION)" && \ mkdir "HandBrake $(HB_VERSION)" && \ - cp -r AUTHORS COPYING CREDITS HandBrake.app \ - "HandBrake $(HB_VERSION)" && \ + cp AUTHORS "HandBrake $(HB_VERSION)/AUTHORS.txt" && \ + cp COPYING "HandBrake $(HB_VERSION)/COPYING.txt" && \ + cp CREDITS "HandBrake $(HB_VERSION)/CREDITS.txt" && \ + cp THANKS "HandBrake $(HB_VERSION)/THANKS.txt" && \ + ( cd doc && ./genhtml.sh ) && \ + cp doc/faq.html "HandBrake $(HB_VERSION)/FAQ.html" && \ + cp -r HandBrake.app "HandBrake $(HB_VERSION)" && \ zip -9 -r $(1) "HandBrake $(HB_VERSION)" && \ rm -rf "HandBrake $(HB_VERSION)" } |