diff options
Diffstat (limited to 'compiz-fusion-git-config')
-rw-r--r-- | compiz-fusion-git-config | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/compiz-fusion-git-config b/compiz-fusion-git-config new file mode 100644 index 0000000..2709c15 --- /dev/null +++ b/compiz-fusion-git-config @@ -0,0 +1,60 @@ +#!/bin/bash +# Compiz Fusion Git Retrieval/Build Script Configuration + +## Git Configuration +# If you are a user, you can leave these fields alone. If you are a dev, change user to dev +GIT_USER=(user) + +# Please select the destination of the checkout +# Ex.: GIT_LOCATION="/home/user/compiz-fusion" will create /home/user/compiz-fusion/<package> +# for each package. (Default is autodetection for /home/user) +GIT_LOCATION="$(echo $HOME)/compiz-fusion" + +## Build Configuration +# Select the prefix for building. This controls the "prefix" of where the files are installed to +# Ex.: BUILD_PREFIX="/usr/local" +BUILD_PREFIX="/usr/local" + +# Determines if make install should be called with sudo +# If it isn't, you must be root or BUILD_PREFIX must be writable by the current user +# Ex.: BUILD_SUDO="sudo" or BUILD_SUDO="" +BUILD_SUDO="sudo" + +# Passes arguments to compiz's autogen.sh script +# If you do not know what this means, you can skip it +BUILD_COMPIZ_ARGS="" + +## Package Selection +# You can stop the checkout of an app, by adding a ! infront of the package name +# Ex.: Change CATEGORY=(ccsm libcompizconfig) to CATEGORY=(ccsm !libcompizconfig) + +# Compiz +COMPIZ=(compiz) + +# Compiz Fusion +FUSION=(!i18n) + +# Compiz Fusion Miscellaneous Apps +MISC=(!makefile !yags) + +# Compiz Fusion Libraries +LIBS=(bcop) + +# Compiz Fusion Configuration Apps and Bindings +CONFIG=(ccsm compizconfig-backend-gconf compizconfig-backend-kconfig + compizconfig-python libcompizconfig) + +# Compiz Fusion Window Decorators +DECORATORS=(emerald emerald-themes) + +# Compiz Fusion Plugins (Containers) - Groups of Plugins +PLUGIN_CONTAINERS=(plugins-extra plugins-main plugins-unsupported !plugins-wip) + +# Compiz Fusion Plugins (Individuals) - Individual Plugins +PLUGINS=(!addhelper !animation !atlantis !bench !compiz-scheme !crashhandler + !cubereflex !expo !extrawm !fadedesktop !fakeargb !firepaint !gears + !goto-viewport !group !jpeg !mblur !mswitch !neg !opacify !put !reflex + !resizeinfo !ring !scaleaddon !scalefilter !screencasting !showdesktop + !snap !snow !splash !text !thumbnail !tile !trailfocus !viewport-switcher + !vpswitch !wall !wallpaper !winrules) + |