forked from nofxx/fuppes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crosscompile_win32.sh
executable file
·674 lines (501 loc) · 13.5 KB
/
crosscompile_win32.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
#
# cross compile FUPPES for Windows using mingw
# Copyright (C) 2009 Ulrich Völkel <u-voelkel@users.sourceforge.net>
#
# tested on debian using mingw32-4.2.1.dsfg-1 and mingw32-runtime-3.13-1
# furthermore you need wine and wine-bin in order to
# execute test programms build by configure scripts
# autotools, wget and svn
# settings
# the build host
HOST="i586-mingw32msvc"
# target directory
PREFIX=`pwd`"/win32"
# make command (e.g. "make -j 2")
MAKE="make -j 2"
MAKE_INSTALL="make install"
# you should not need to change anything below
# exports
export CFLAGS="-I$PREFIX/include $CFLAGS"
export CPPFLAGS="-I$PREFIX/include $CPPFLAGS"
export LDFLAGS="-L$PREFIX/lib"
export PKG_CONFIG_LIBDIR="$PREFIX/lib/pkgconfig"
export WINEDLLPATH="$PREFIX/bin"
FUPPES_DIR=`pwd`
# create target directory
if ! test -d $PREFIX; then
#echo "enter root password for target directory creation"
#su -c "mkdir $PREFIX && chmod 777 $PREFIX"
mkdir $PREFIX
fi
# create source directory
if ! test -d $PREFIX"/src"; then
mkdir $PREFIX"/src"
fi
cd $PREFIX"/src"/
# $1 = paket name, $2 = file ext, $3 = url
function loadpkt {
if ! test -d ../downloads; then
mkdir ../downloads
fi
SRC_PKT=$1$2
if ! test -e ../downloads/$SRC_PKT; then
wget --directory-prefix=../downloads/ $3$SRC_PKT
fi
case $2 in
".tar.gz")
tar -xvzf ../downloads/$1$2
;;
".tar.bz2")
tar -xvjf ../downloads/$1$2
;;
".zip")
unzip -o ../downloads/$1$2
;;
esac
cd $1
}
# collect build info
echo "build zlib? [Y/n]"
HAVE_ZLIB="no"
read build
if test "$build" != "n"; then
HAVE_ZLIB="yes"
fi
echo "build libiconv? [Y/n]"
HAVE_ICONV="no"
read build
if test "$build" != "n"; then
HAVE_ICONV="yes"
fi
echo "build taglib? [Y/n]"
HAVE_TAGLIB="no"
read build
if test "$build" != "n"; then
HAVE_TAGLIB="yes"
fi
echo "build LAME? [Y/n]"
HAVE_LAME="no"
read build
if test "$build" != "n"; then
HAVE_LAME="yes"
fi
echo "build ogg/vorbis (libogg and libvorbisfile)? [Y/n]"
HAVE_OGGVORBIS="no"
read build
if test "$build" != "n"; then
HAVE_OGGVORBIS="yes"
fi
echo "build FLAC? [Y/n]"
HAVE_FLAC="no"
read build
if test "$build" != "n"; then
HAVE_FLAC="yes"
fi
echo "build MusePack mpc? [Y/n]"
HAVE_MUSEPACK="no"
read build
if test "$build" != "n"; then
HAVE_MUSEPACK="yes"
fi
#echo "build libmad? [Y/n]"
HAVE_MAD="no"
#read build
#if test "$build" != "n"; then
# HAVE_MAD="yes"
#fi
echo "build exiv2? [Y/n]"
HAVE_EXIV2="no"
read build
if test "$build" != "n"; then
HAVE_EXIV2="yes"
fi
#todo libtiff (imagemagick and simage) libungif (simage)
echo "build simage? [Y/n]"
HAVE_SIMAGE="no"
read build
if test "$build" != "n"; then
HAVE_SIMAGE="yes"
fi
echo "build ImageMagick? [Y/n]"
HAVE_IMAGEMAGICK="no"
HAVE_JPEG="no"
HAVE_PNG="no"
read build
if test "$build" != "n"; then
HAVE_IMAGEMAGICK="yes"
echo "build libjpeg? [Y/n]"
read build
if test "$build" != "n"; then
HAVE_JPEG="yes"
fi
echo "build libpng? [Y/n]"
read build
if test "$build" != "n"; then
HAVE_PNG="yes"
fi
fi
echo "build ffmpeg? [Y/n]"
HAVE_FFMPEG="no"
read build
if test "$build" != "n"; then
HAVE_FFMPEG="yes"
echo "build libffmpegthumbnailer? [Y/n]"
read build
if test "$build" != "n"; then
HAVE_FFMPEGTHUMBNAILER="yes"
fi
fi
echo "strip and touch libraries and executables? [Y/n]"
DO_STRIP="no"
read strip
if test "$strip" != "n"; then
DO_STRIP="yes"
fi
# zlib 1.2.3 (for taglib, exiv2, imagemagick & co.)
# strongly recommended
if test "$HAVE_ZLIB" == "yes"; then
echo "start building zlib"
loadpkt "zlib-1.2.3" ".tar.gz" \
"http://prdownloads.sourceforge.net/libpng/"
echo "AC_INIT([zlib], [1.2.3], [fuppes@ulrich-voelkel.de])
AM_INIT_AUTOMAKE([foreign])
AC_PROG_CC
AC_LIBTOOL_WIN32_DLL
AC_PROG_LIBTOOL
AC_PROG_INSTALL
AM_PROG_INSTALL_STRIP
AC_OUTPUT([Makefile])" \
> configure.ac
echo "include_HEADERS = zlib.h zconf.h
lib_LTLIBRARIES = libz.la
libz_la_SOURCES = \
adler32.h adler32.c \
compress.h compress.c \
crc32.h crc32.c \
gzio.h gzio.c \
uncompr.h uncompr.c \
deflate.h deflate.c \
trees.h trees.c \
zutil.h zutil.c \
inflate.h inflate.c \
infback.h infback.c \
inftrees.h inftrees.c \
inffast.h inffast.c
libz_la_LDFLAGS = -no-undefined" \
> Makefile.am
autoreconf -vfi
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped zlib"
fi
# libiconv 1.13 (recommended)
if test "$HAVE_ICONV" == "yes"; then
echo "start building libiconv"
loadpkt "libiconv-1.13" ".tar.gz" \
"http://ftp.gnu.org/pub/gnu/libiconv/"
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped libiconv"
fi
# PCRE 7.9 (required)
echo "start building pcre"
loadpkt "pcre-7.9" ".zip" \
"ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/"
./configure --host=$HOST --prefix=$PREFIX \
--enable-utf8 --enable-newline-is-anycrlf --disable-cpp
$MAKE
$MAKE_INSTALL
cd ..
# SQLite 3.6.23 (required)
echo "start building sqlite"
loadpkt "sqlite-amalgamation-3.7.3" ".tar.gz" \
"http://www.sqlite.org/"
cd sqlite-3.7.3
./configure --host=$HOST --prefix=$PREFIX \
--enable-threadsafe
$MAKE
$MAKE_INSTALL
cd ..
# libxml2 2.6.32 (required)
echo "start building libxml2"
loadpkt "libxml2-2.6.32" ".tar.gz" \
"ftp://xmlsoft.org/libxml2/old/"
#loadpkt "libxml2-2.7.6" ".tar.gz" \
# "ftp://xmlsoft.org/libxml2/"
./configure --host=$HOST --prefix=$PREFIX \
--enable-ipv6=no --with-debug=no --with-http=no \
--with-ftp=no --with-docbook=no --with-schemas=yes --with-schematron=no \
--with-catalog=no --with-html=no --with-legacy=no --with-pattern=no \
--with-push=yes --with-python=no --with-readline=no --with-regexps=no \
--with-sax1=no --with-xinclude=no --with-xpath=no --with-xptr=no --with-modules=no \
--with-valid=no --with-reader=yes --with-writer=yes
$MAKE
$MAKE_INSTALL
cd ..
#
# OPTIONAL
#
# taglib
if test "$HAVE_TAGLIB" == "yes"; then
echo "start building taglib"
loadpkt "taglib-1.6.3" ".tar.gz" \
"http://developer.kde.org/~wheeler/files/src/"
CXXFLAGS="$CXXFLAGS -DMAKE_TAGLIB_LIB" \
LDFLAGS="$LDFLAGS" \
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped taglib"
fi
# LAME
if test "$HAVE_LAME" == "yes"; then
echo "start building lame"
loadpkt "lame-3.98.4" ".tar.gz" \
"http://downloads.sourceforge.net/lame/"
# we need to reconfigure the sources because of this bug
# http://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=78dc34
sed -i -e 's/AM_PATH_GTK(1.2.0, HAVE_GTK="yes", HAVE_GTK="no")/HAVE_GTK="no"\nGTK_CFLAGS=""\nAC_SUBST(GTK_CFLAGS)/' configure.in
autoreconf -vfi
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped LAME"
fi
# ogg/vorbis
if test "$HAVE_OGGVORBIS" == "yes"; then
# ogg
echo "start building ogg"
loadpkt "libogg-1.2.0" ".tar.gz" \
"http://downloads.xiph.org/releases/ogg/"
autoreconf -vfi
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
cd ..
# vorbis
echo "start building vorbis"
loadpkt "libvorbis-1.3.1" ".tar.gz" \
"http://downloads.xiph.org/releases/vorbis/"
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped ogg/vorbis"
fi
# FLAC
if test "$HAVE_FLAC" == "yes"; then
#http://sourceforge.net/tracker/index.php?func=detail&aid=2000973&group_id=13478&atid=313478
echo "start building flac"
loadpkt "flac-1.2.1" ".tar.gz" \
"http://downloads.sourceforge.net/flac/"
sed -i -e 's/!defined __MINGW32__ &&/ /' include/share/alloc.h
sed -i -e 's/AM_MAINTAINER_MODE/AM_MAINTAINER_MODE\nAC_LIBTOOL_WIN32_DLL/' configure.in
sed -i -e 's/AM_PATH_XMMS/echo "xmms"\n# AM_PATH_XMMS/' configure.in
sed -i -e 's/@OGG_LIBS@/@OGG_LIBS@ -lws2_32/' src/libFLAC/Makefile.am
sed -i -e 's/libFLAC_la_LDFLAGS =/libFLAC_la_LDFLAGS = -no-undefined/' src/libFLAC/Makefile.am
autoreconf -vfi
./configure --host=$HOST --prefix=$PREFIX \
--disable-xmms-plugin --disable-cpplibs
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped FLAC"
fi
# musepack
if test "$HAVE_MUSEPACK" == "yes"; then
echo "start building musepack"
# SV7
#loadpkt "libmpcdec-1.2.6" ".tar.bz2" \
# "http://files.musepack.net/source/"
# SV8
loadpkt "musepack_src_r435" ".tar.gz" \
"http://files.musepack.net/source/"
# fixes for SV7
#sed -i -e 's/AC_MSG_ERROR(\[working memcmp is not available.\])/echo "no memcmp"/' configure.ac
#sed -i -e 's/AM_PROG_LIBTOOL/AM_PROG_LIBTOOL\nAC_PROG_CXX/' configure.ac
# fixes for SV8 (some tools don't compile but as we don't need them anyway we just skip them)
sed -i -e 's/\\/\n/' Makefile.am
sed -i -e 's/\tmpcchap/#/' Makefile.am
autoreconf -vfi
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
# SV7 only
#cp include/mpcdec/config_win32.h $PREFIX/include/mpcdec/
cd ..
else
echo "skipped MusePack"
fi
# MAD
if test "$HAVE_MAD" == "yes"; then
#http://downloads.sourceforge.net/mad/libid3tag-0.15.1b.tar.gz
echo "start building mad"
loadpkt "libmad-0.15.1b" ".tar.gz" \
"http://downloads.sourceforge.net/mad/"
sed -i -e 's/libmad_la_LDFLAGS =/libmad_la_LDFLAGS = -no-undefined/' Makefile.am
aclocal
autoconf
automake --foreign
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
mv $PREFIX/lib/libmad-0 $PREFIX/bin/libmad-0.dll
cd ..
echo "# Package Information for pkg-config
prefix=$PREFIX
exec_prefix=\${prefix}
libdir=\${exec_prefix}/lib
includedir=\${prefix}/include
Name: mad
Description: MPEG Audio Decoder
Requires:
Version: 0.15.0b
Libs: -L\${libdir} -lmad
Cflags: -I\${includedir}" \
> $PREFIX/lib/pkgconfig/mad.pc
else
echo "skipped libmad"
fi
# exiv2
if test "$HAVE_EXIV2" == "yes"; then
echo "start building exiv2"
loadpkt "exiv2-0.20" ".tar.gz" \
"http://www.exiv2.org/"
PARAMS="--disable-xmp --disable-visibility"
if test "$HAVE_ZLIB" != "yes"; then
PARAMS="$PARAMS --without-zlib"
fi
./configure --host=$HOST --prefix=$PREFIX $PARAMS
# fixes for 0.18.2
#sed -i -e 's/LDFLAGS = /LDFLAGS = -no-undefined /' config/config.mk
#sed -i -e 's/-lm//' config/config.mk
$MAKE
mv src/.libs/exiv2 src/.libs/exiv2.exe
$MAKE_INSTALL
cd ..
else
echo "skipped exiv2"
fi
#libjpeg (for ImageMagick, simage and ffmpegthumbnailer)
if test "$HAVE_JPEG" == "yes"; then
echo "start building jpeg"
loadpkt "jpegsrc.v7" ".tar.gz" \
"http://www.ijg.org/files/"
cd jpeg-7
#sed -i -e 's/typedef int boolean/typedef char boolean/' jmorecfg.h
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped libjpeg"
fi
#libpng (for ImageMagick and simage)
if test "$HAVE_PNG" == "yes"; then
echo "start building png"
loadpkt "libpng-1.4.4" ".tar.bz2" \
"http://prdownloads.sourceforge.net/libpng/"
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped libpng"
fi
# todo libtiff & libungif
#simage
if test "$HAVE_SIMAGE" == "yes"; then
echo "start building simage"
loadpkt "simage-1.7.0" ".tar.gz" \
"http://ftp.coin3d.org/coin/src/all/"
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped simage"
fi
# ImageMagick
if test "$HAVE_IMAGEMAGICK" == "yes"; then
echo "start building ImageMagick"
loadpkt "ImageMagick-6.6.5-0" ".tar.gz" \
"ftp://ftp.imagemagick.org/pub/ImageMagick/"
sed -i -e 's/"\*.la"/"\*.dll"/' magick/module.c
sed -i -e 's/"%s.la"/"%s.dll"/' magick/module.c
sed -i -e 's/GetEnvironmentValue("MAGICK_CODER_MODULE_PATH")/ConstantString(".\\\\magick-modules")/' magick/module.c
sed -i -e 's/GetEnvironmentValue("MAGICK_CODER_FILTER_PATH")/ConstantString(".\\\\magick-filters")/' magick/module.c
./configure --host=$HOST --prefix=$PREFIX \
--disable-deprecated --without-perl --with-modules \
--without-x --without-gslib --with-magick-plus-plus=no \
--with-quantum-depth=8 --enable-embeddable
#--disable-installed
$MAKE CFLAGS="-DHAVE_BOOLEAN $CFLAGS"
$MAKE_INSTALL
cd ..
else
echo "skipped ImageMagick"
fi
if test "$HAVE_FFMPEG" == "yes"; then
echo "start building ffmpeg"
if ! test -d ffmpeg-svn; then
svn co svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg-svn
cd ffmpeg-svn
else
cd ffmpeg-svn
svn update
fi
sed -i -e 's/__MINGW32_MINOR_VERSION >= 15/__MINGW32_MINOR_VERSION >= 13/' configure
sed -i -e 's/usleep/Sleep/' ffmpeg.c
./configure --prefix=$PREFIX \
--enable-cross-compile --target-os=mingw32 --arch=x86 \
--enable-memalign-hack --cross-prefix=$HOST- --enable-shared \
--enable-gpl --disable-ffmpeg --disable-ffplay --disable-ffserver \
--disable-demuxer=dv1394 --disable-indevs --disable-yasm
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped ffmpeg"
fi
if test "$HAVE_FFMPEGTHUMBNAILER" == "yes"; then
echo "start building ffmpegthumbnailer"
loadpkt "ffmpegthumbnailer-2.0.0" ".tar.gz" \
"http://ffmpegthumbnailer.googlecode.com/files/"
#sed -i -e 's/-version-info 3:3:0/-no-undefined -version-info 3:3:0/' Makefile.am
#autoreconf -vfi
./configure --host=$HOST --prefix=$PREFIX
$MAKE
$MAKE_INSTALL
cd ..
else
echo "skipped ffmpegthumbnailer"
fi
# FUPPES
cd $FUPPES_DIR
#CPPFLAGS="$CPPFLAGS -D__MSVCRT_VERSION__=0x0800" \
#LIBS="$LIBS -lmsvcr80" \
./configure --host=$HOST --prefix=$PREFIX --localstatedir=$PREFIX/var \
--enable-lame --enable-transcoder-ffmpeg --enable-windows-service
$MAKE
$MAKE_INSTALL
# strip libraries and executables
if test "$DO_STRIP" == "yes"; then
$HOST-strip -s $PREFIX/bin/*
$HOST-strip -s $PREFIX/lib/bin/*
touch $PREFIX/bin/*
touch $PREFIX/lib/bin/*
touch $PREFIX/share/fuppes/*
fi