Fix creation of output file name
[skype-call-recorder.git] / static / README
blobb9832c1d47e94db003c0b731ee11dda705b8a0ad
2 when you build statically, this directory is supposed to contain
3 the static versions of libid3 and libmp3lame.  subdirs lib/ and
4 include/ are expected.  use "utils/cmake-static ." to compile a
5 static version
7 follow these instructions to build the static libraries.  this
8 assumes $BASE points to the base source directory
10 instructions for building static libid3:
11         # Unpack id3lib-x.x.x.tar.gz
12         ./configure --enable-static --disable-shared --prefix=$BASE/static
13         ( cd src && make install-strip )
14         ( cd include && make install )
16 instructions for building static libmp3lame:
17         # unpack lame-x.xx.tar.gz
18         ./configure --enable-static --disable-shared --prefix=$BASE/static
19         ( cd mpglib && make )
20         ( cd libmp3lame && make install-strip )
21         ( cd include && make install )