summaryrefslogtreecommitdiff
path: root/ext/intl/tests/resourcebundle.build
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2010-01-11 23:46:43 +0000
committerStanislav Malyshev <stas@php.net>2010-01-11 23:46:43 +0000
commit28e9a01a3e1bca88c836a19ff01ec42bebf5a72d (patch)
tree8f4e45c628fdfd9d9b40e04c2877d237fb5fdd9e /ext/intl/tests/resourcebundle.build
parentdc09fa81f52004c0e4359ec156874841a00131fe (diff)
downloadphp-git-28e9a01a3e1bca88c836a19ff01ec42bebf5a72d.tar.gz
name resource build script resourcebundle.build
Diffstat (limited to 'ext/intl/tests/resourcebundle.build')
-rwxr-xr-xext/intl/tests/resourcebundle.build33
1 files changed, 33 insertions, 0 deletions
diff --git a/ext/intl/tests/resourcebundle.build b/ext/intl/tests/resourcebundle.build
new file mode 100755
index 0000000000..6a7eeae5eb
--- /dev/null
+++ b/ext/intl/tests/resourcebundle.build
@@ -0,0 +1,33 @@
+<?php
+// THIS SCRIPT WILL REBUILD ResourceBundle bundles from source files
+
+// DEFINE YOUR ICU TOOLS PATH HERE
+define("ICU_DIR", "C:/PROJECTS/ICU40/BIN/");
+
+$here = dirname(__FILE__);
+
+$dir = new GlobIterator("$here/_files/*.txt", FilesystemIterator::KEY_AS_FILENAME);
+
+foreach($dir as $file) {
+ passthru( ICU_DIR."genrb -s $here/_files/ -d $here/_files/resourcebundle ".$file->getFileName());
+}
+
+$dir = new GlobIterator("$here/_files/resourcebundle/*.res", FilesystemIterator::KEY_AS_FILENAME);
+foreach($dir as $file) {
+ if($file->getFileName() == "res_index.res") continue;
+ $list[] = str_replace(".res", "", $file->getFileName());
+}
+
+$filelist = join(" {\"\"}\n", $list);
+$res_index = <<<END
+res_index:table(nofallback) {
+ InstalledLocales {
+$filelist {""}
+ }
+}
+END;
+file_put_contents("$here/_files/res_index.txt", $res_index);
+
+passthru( ICU_DIR."genrb -s $here/_files/ -d $here/_files/resourcebundle res_index.txt");
+
+// passthru(ICU_DIR."icupkg -tl -a $here/rb.txt -s $here/_files -d $here/_files new $here/_files/resourcebundle.dat"); \ No newline at end of file