|
|
Subversion build for unix-like OSes
Prerequisites :
- Make sure that you have installed the following libraries :
- It is recommended that you also install those optional libraries :
- You can also install the following programs :
- Get the subversion code :
svn co https://mp3splt.svn.sourceforge.net/svnroot/mp3splt/mp3splt-project 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 with "./configure
--disable-ogg" but it is not recommended
You can disable the use of id3tag with "./configure
--disable-id3tag" but it is not recommended
- 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 :
./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 :
./configure
By default, the compilation is without beep-media-player (bmp) support; you can
enable bmp support with "./configure --enable-bmp"
- Compile the program :
make
The mp3splt-gtk binary is in the mp3splt-project/mp3splt-gtk/src directory
- Install the program (optional) :
make install
You have to be root to install the program
|