summaryrefslogtreecommitdiff
path: root/unrpyc
diff options
context:
space:
mode:
authorAlex Xu <alex_y_xu@yahoo.ca>2013-08-22 17:32:59 -0400
committerAlex Xu <alex_y_xu@yahoo.ca>2013-08-22 17:32:59 -0400
commit922245cf8843dd0b81d3b46aa0fa113de8a49e84 (patch)
tree33f679b1ce6bba894ef3821ad1e459b67bd2dc1e /unrpyc
parent6f96b4f9b19e54fba9e392347959e0e1ee68d876 (diff)
downloadhtml5ks-922245cf8843dd0b81d3b46aa0fa113de8a49e84.tar.xz
html5ks-922245cf8843dd0b81d3b46aa0fa113de8a49e84.zip
work on build chain
Diffstat (limited to 'unrpyc')
-rw-r--r--unrpyc/README2
-rwxr-xr-xunrpyc/find-gzip.sh3
2 files changed, 2 insertions, 3 deletions
diff --git a/unrpyc/README b/unrpyc/README
index 9e4ef50..ba1791f 100644
--- a/unrpyc/README
+++ b/unrpyc/README
@@ -8,7 +8,7 @@ How to use:
2. Execute "2to3 -w renpy/*.py".
3. Put the rpyc files from the official KS distribution in here.
4. Run "make" with appropriate -j options (yay auto-parallelization)
-5. Run "make install". Alternatively, move "script.json" into /www/scripts.
+5. Run "make install".
If you're on Windows, sucks for you. Use a better OS.
diff --git a/unrpyc/find-gzip.sh b/unrpyc/find-gzip.sh
index cb65dc9..de6d19e 100755
--- a/unrpyc/find-gzip.sh
+++ b/unrpyc/find-gzip.sh
@@ -1,11 +1,10 @@
#!/bin/sh
if command -v zopfli; then
- printf "%s" "$(command -v zopfli)"
+ :
elif command -v gzip; then
echo >&2 "Consider obtaining zopfli (https://code.google.com/p/zopfli/)"
echo >&2 "for higher compression ratios (about 5% decrease in size of"
echo >&2 "script.json.gz)."
- printf "%s" "$(command -v gzip) -9"
else
echo >&2 "Could not find zopfli or gzip, aborting."
exit 1