-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
executable file
·42 lines (35 loc) · 2.5 KB
/
INSTALL
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
-----xscroller installation guide-----
Depending on how you get xscroller, there are two diferent installation methods.
With the version checked out from the subversion repository, you will need to
have the automake tools installed. With the tar.gz file from sourceforge or from
freashmeat, this has already been done for you.
xscroller has some optional libraries that it can use to enhance itself.
Installing libease will enable easing/tweening effects that will allow you to
do transitions between text and scrollers. For further information about
libease, please go to http://sourceforge.net/projects/libease/
As most people that are less savvy tend to stick to Ubuntu, I will describe the
installation methods for Ubuntu. Please bare this in mind and change commands to
match your environment.
1.*** USING THE CHECKED OUT VERSION FROM svn.stroppytux.net ***
* If you downloaded the tar.gz version, skip to section 2.
* # sudo apt-get install automake libtool libx11-dev libxmu-dev build-essential
* # svn co http://[email protected]/xscroller/tags/0.9 xlayout-0.9
* Change into the root directory of xscroller (contains configure.ac)
* # libtoolize # (glibtoolize in OSX) This generates the lt-main.sh script for libtool.
* # aclocal # This generates your aclocal.m4 file.
* # autoheader # This generates the src/config.h.in template file.
* # automake --add-missing # This generates all the scripts for autoconf.
* # autoconf # This generates your configure script to compile xscroller.
2.*** USING THE tar.gz VERSION FROM sourcefore.net/freshmeat.net ***
* If you downloaded the subversion version, skip to section 3.
* # sudo apt-get install libx11-dev libxmu-dev build-essential
* # cd /tmp # Change to temp directory. (Should be /usr/src but need to be root for that)
* # wget http://downloads.sourceforge.net/project/xscroller/xscroller/xscroller-0.9/xscroller-0.9.tar.bz2
* # tar -jxf xscroller-0.9.tar.bz2 # Extract the contents (-j: bzip2 -x: extract -f: file)
* # cd xscroller-0.9 # Change into the xscroller source directory.
3.*** ALL USERS ONCE YOU HAVE COMPLETED SECTION 2 OR 3 ***
* # ./configure --help # Check which options you need. I use --prefix=/usr
* # ./configure <OPTIONS> # configure xscroller with your options.
* # make # Builds xscroller source into a binary file.
* # sudo make install # Installs xscroller, the header, and the man file and the library.
* # sudo ldconfig # Updates the dynamic library listing in your computer.