Get the subversion code :
svn co http://svn.code.sf.net/p/mp3splt/code/mp3splt-project/trunk mp3splt-project
Automatic :
As root, go in the mp3splt-project directory and type :
make root_install
Manual :
Libmp3splt build :
Go in the mp3splt-project/libmp3splt directory and
type :
./autogen.sh
After that, type :
./configure
You can disable the use of ogg vorbis with "./configure
--disable-ogg"
You can disable the use of id3tag with "./configure
--disable-id3tag"
You can disable the use of FLAC with "./configure
--disable-flac"
Compile the library :
make
Install the library : (you have to install the library to compile mp3splt-gtk)
make install
You have to be root to install the library
Type this line as root :
if [ -z `grep '/usr/local/lib' /etc/ld.so.conf` ];then `echo
'/usr/local/lib' >> /etc/ld.so.conf` && ldconfig;else ldconfig;fi
Mp3splt build :
Go in the mp3splt-project/newmp3splt directory and
type :
./autogen.sh
After that type :
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:$PKG_CONFIG_PATH && ./configure
Compile the program :
make
The mp3splt binary is in the mp3splt-project/newmp3splt/src directory
Install the program (optional) :
make install
You have to be root to install the program.
Mp3splt-gtk build :
Go in the mp3splt-project/mp3splt-gtk directory and type
./autogen.sh
After that type :
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/:$PKG_CONFIG_PATH && ./configure
You can also use the '--enable-gstreamer' and '--enable-audacious'
parameters to configure. It is recommended to use '--enable-gstreamer'.
Compile the program :
make
The mp3splt-gtk binary is in the mp3splt-project/mp3splt-gtk/src directory