Beryl Core: Difference between revisions
From CBLFS
Jump to navigationJump to search
Chipster19 (talk | contribs) No edit summary |
Minor typo fixes |
||
| Line 12: | Line 12: | ||
== Introduction to Beryl Core == | == Introduction to Beryl Core == | ||
This is the core package that contains all the important files required for running beryl, including headers and files | This is the core package that contains all the important files required for running beryl, including headers and files for the development of beryl-plugins. | ||
== Dependencies == | == Dependencies == | ||
| Line 27: | Line 27: | ||
== Configuration Information == | == Configuration Information == | ||
First extract the beryl-mesa package. It is used by beryl-core to build the beryl-xgl | First extract the beryl-mesa package. It is used by beryl-core to build the beryl-xgl binary. Next, use the following option to specify where beryl-core must look to find beryl-mesa : | ||
--with-berylmesadir= | --with-berylmesadir= | ||
If you want enable GConf backend for libberylsettings, add the following option : | If you want to enable the GConf backend for libberylsettings, add the following option : | ||
--enable-gconf | --enable-gconf | ||
Revision as of 08:17, 24 January 2007
| Download Source: |
|---|
| http://releases.beryl-project.org/0.2.1/beryl-core-0.2.1.tar.bz2 |
| http://releases.beryl-project.org/0.2.1/beryl-mesa-0.2.1.tar.bz2 |
Introduction to Beryl Core
This is the core package that contains all the important files required for running beryl, including headers and files for the development of beryl-plugins.
Dependencies
Required
Recommended
Configuration Information
First extract the beryl-mesa package. It is used by beryl-core to build the beryl-xgl binary. Next, use the following option to specify where beryl-core must look to find beryl-mesa :
--with-berylmesadir=
If you want to enable the GConf backend for libberylsettings, add the following option :
--enable-gconf
Non-Multilib
Compile the package:
./configure --prefix=/usr --disable-dependency-tracking && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr --disable-dependency-tracking &&
make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --disable-dependency-tracking \
--libdir=/usr/lib32 &&
make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --disable-dependency-tracking \
--libdir=/usr/lib64 &&
make
Install the package
make install
Contents
| Installed Programs: | beryl, beryl-xgl, beryl-settings-tool |
|---|---|
| Installed Libraries: | libberylsettings.{a,la,so}, libberyldecoration.{a,la,so} |
| Installed Directory: | /usr/include/beryl, /usr/lib/beryl |