diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 15:07:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 15:07:22 +0000 |
commit | f9d480cfe50ca1d7a0f0b5a2b8bb9932962bfbe7 (patch) | |
tree | ce9e8db2d4e8799780fa72ae8f1953039373e2ee /tools/build/jhbuildrc-gnome-shell | |
parent | Initial commit. (diff) | |
download | gnome-shell-f9d480cfe50ca1d7a0f0b5a2b8bb9932962bfbe7.tar.xz gnome-shell-f9d480cfe50ca1d7a0f0b5a2b8bb9932962bfbe7.zip |
Adding upstream version 3.38.6.upstream/3.38.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tools/build/jhbuildrc-gnome-shell')
-rw-r--r-- | tools/build/jhbuildrc-gnome-shell | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/tools/build/jhbuildrc-gnome-shell b/tools/build/jhbuildrc-gnome-shell new file mode 100644 index 0000000..aef75db --- /dev/null +++ b/tools/build/jhbuildrc-gnome-shell @@ -0,0 +1,54 @@ +# -*- mode: python -*- +# +# jhbuildrc for building gnome-shell. Customizations should be done in +# ~/.jhbuildrc-custom +# +# Copyright (C) 2008 Red Hat, Inc. +# +# Some ideas and a bit of code taken from gtk-osx-build +# +# Copyright (C) 2006, 2007, 2008 Imendio AB +# +# Use .jhbuildrc-custom to override the moduleset, modules to build, +# the source checkout location, installation prefix, or svn usernames +# etc. +# +# JHBUILDRC_GNOME_SHELL - Do not edit this line (or anything else) + +# Only rebuild modules that have changed +build_policy = 'updated' + +moduleset = 'gnome-apps-3.14' + +modules = [ 'meta-gnome-core-shell' ] + +# what directory should the source be checked out to? +checkoutroot = os.path.expanduser('~/gnome/source') + +# the prefix to configure/install modules to (must have write access) +prefix = os.path.expanduser('~/gnome/install') + +# reduce what we build as much as possible +ignore_suggests = True + +# Use system libraries for the builds +if use_lib64: + _libdir = 'lib64' +else: + _libdir = 'lib' +addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', _libdir, 'pkgconfig')) +addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', 'share', 'pkgconfig')) + +# Look in /usr/share for icons, D-BUS service files, etc +addpath('XDG_DATA_DIRS', '/usr/share') +# Look in /etc/xdg for system-global autostart files +addpath('XDG_CONFIG_DIRS', '/etc/xdg') + +# Import optional user RC for further customization. You can override +# the prefix or default build setup for example, or CFLAGS or +# module_autogenargs, etc. +# +_userrc = os.path.join(os.environ['HOME'], '.jhbuildrc-custom') +if os.path.exists(_userrc): + execfile(_userrc) + |