Compiz: Difference between revisions
From LFScript
m →Dependencies:  Libwnck Compat  | 
				 Update to 0.8.14  | 
				||
| (13 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
[[Category:Scripts]]  | |||
<scriptname>compiz</scriptname>  | <scriptname>compiz</scriptname>  | ||
== Sources ==  | == Sources ==  | ||
* <sourcecode>  | * <sourcecode>https://github.com/compiz-reloaded/compiz/releases/download/v0.8.14/compiz-0.8.14.tar.xz</sourcecode>  | ||
<md5>  | <md5>b908dea54a55769243e86adc89a7deb1  compiz-0.8.14.tar.xz</md5>  | ||
== Dependencies ==  | == Dependencies ==  | ||
* <dependency>startup-notification</dependency>  | * <dependency>startup-notification</dependency>  | ||
* <dependency>  | * <dependency>libxslt</dependency>  | ||
* <dependency value="  | * <dependency>libjpeg-turbo</dependency>  | ||
* <dependency>glu</dependency>  | |||
* <dependency>cairo</dependency>  | |||
* <recommended value="libwnck" because="it, and it's dependency gtk+3, are required to use GTK window decorations">libwnck</recommended>  | |||
* [[Marco]]<recommended value="marco" because="it allows Compiz to use the window decoration that is set for Marco"></recommended>  | |||
It is possible to build this software without <code>  | |||
It is possible to build this software without <code>libwnck</code>, and it's dependency <code>gtk+3</code> installed. However, without them <code>gtk-window-decorator</code> will not be built and you will have to install [[Emerald]] if you want framed windows under [[Compiz]].  | |||
== Installation ==  | == Installation ==  | ||
<build>./  | <build>./autogen.sh --prefix=/usr \  | ||
         --  |          --with-gtk=3.0  | ||
make</build>  | make</build>  | ||
<build user="root">make install</build>  | <build user="root">make install</build>  | ||
<build user="root">cat > /  | <build user="root">cat > ~/.xinitrc << "EOF"  | ||
compiz ccp &  | compiz ccp &  | ||
exec xterm  | exec xterm  | ||
EOF</build>  | EOF</build>  | ||
Latest revision as of 17:50, 28 April 2017
LFScript can find this software under the name compiz.
Sources
MD5 Checksums:
b908dea54a55769243e86adc89a7deb1 compiz-0.8.14.tar.xz
Dependencies
- startup-notification
 - libxslt
 - libjpeg-turbo
 - glu
 - cairo
 - libwnck (recommended; It, and it's dependency gtk+3, are required to use GTK window decorations)
 - Marco (recommended; It allows Compiz to use the window decoration that is set for Marco)
 
It is possible to build this software without libwnck, and it's dependency gtk+3 installed. However, without them gtk-window-decorator will not be built and you will have to install Emerald if you want framed windows under Compiz.
Installation
./autogen.sh --prefix=/usr \
        --with-gtk=3.0
makeAs the root user:
make install
As the root user:
cat > ~/.xinitrc << "EOF" compiz ccp & exec xterm EOF
