ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/makebin.osx
(Generate patch)

Comparing deliantra/Deliantra-Client/makebin.osx (file contents):
Revision 1.5 by root, Mon Sep 1 09:17:46 2008 UTC vs.
Revision 1.10 by root, Fri Dec 5 14:49:09 2008 UTC

1#!/bin/bash 1#!/bin/bash
2 2
3# Convert a gtk2-perl program to a standalone OS X binary 3# Convert a gtk2-perl program to a standalone OS X binary
4
5# need to patch libSDL_image from /opt/local/lib/libjpeg.dylib to ./libjpeg.62.dylib
6
7#export MACOSX_DEPLOYMENT_TARGET=10.3 # maybe it helps
8export MACOSX_DEPLOYMENT_TARGET=10.5 # nope
4 9
5PERL=/opt/local 10PERL=/opt/local
6PERLLIB=/usr/lib/perl5 11PERLLIB=/usr/lib/perl5
7PANGO=1.6.0
8 12
9umask 022 13umask 022
10 14
11if false; then 15if true; then
12 for mod in AnyEvent EV JSON-XS Deliantra Compress-LZF BDB; do 16 for mod in AnyEvent EV JSON-XS deliantra/Deliantra Compress-LZF BDB; do
13 ( 17 (
14 cd /root/src/$mod 18 cd /root/src/$mod
19 set -x
20 pwd
21 rsync -avPessh 10.0.0.1:src/$mod/. . --del
15 $PERL/bin/perl Makefile.PL </dev/null 22 $PERL/bin/perl Makefile.PL </dev/null
16 make clean 23 make clean
17 $PERL/bin/perl Makefile.PL </dev/null 24 $PERL/bin/perl Makefile.PL </dev/null
18 make install || exit 25 make install || exit
19 make clean 26 make clean
20 ) 27 ) || exit
21 done 28 done
22fi 29fi
23 30
24if true; then 31if true; then
25 32
87 94
88trap "rm -f addlist pango.rc pango.modules fonts.conf" 0 95trap "rm -f addlist pango.rc pango.modules fonts.conf" 0
89 96
90cd /root/src/deliantra/Deliantra-Client 97cd /root/src/deliantra/Deliantra-Client
91 98
92#$PERL/bin/perl Makefile.PL 99$PERL/bin/perl Makefile.PL
93#make clean 100make clean
94#$PERL/bin/perl Makefile.PL 101$PERL/bin/perl Makefile.PL
95make install || exit 102make install || exit
96 103
97DYLD_LIBRARY_PATH=/opt/local/lib \ 104DYLD_LIBRARY_PATH=/opt/local/lib \
98$PERL/bin/pp -C \ 105$PERL/bin/pp -C \
99 -z 9 \ 106 -z 9 \

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines