1mp3unicode -- Convert MP3 tags to Unicode.
2
3Copyright (c) 2005-2012 Alon Bar-Lev <alon.barlev@gmail.com>
4Copyright (C) 2006 Andrey Dubovik
5
6POSIX
7	Dependencies:
8		taglib>=1.4
9
10	Build:
11		$ ./configure
12		$ make
13		$ make install
14
15Cross-MinGW32
16	Dependencies:
17		taglib>=1.4
18		libiconv>=1.11
19		man2html
20
21	Build:
22		w32root=/tmp/w32root
23
24		./configure \
25			--host=mingw32 \
26			PKG_CONFIG=true \
27			TAGLIB_CFLAGS="-I${w32root}/include/taglib" \
28			TAGLIB_LIBS="-L${w32root}/lib -ltag" \
29			ICONV_CFLAGS="-I${w32root}/include" \
30			ICONV_LIBS="-L${w32root}/lib -liconv.dll"
31		make
32		make install DESTDIR=${w32root}
33
34Native-Cygwin
35	Dependencies:
36		Same as Cross-MinGW32
37
38	Build:
39		Same as Cross-MinGW32, replace --host=mingw32 with --with-cygwin-native.
40
41