blob: de6a0374372db1eed6fde4a928314e21bd181cd5 (
plain)
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
|
# how to use this file?
#
# mkdir -p $HOME/xorg/util
# git clone git://anongit.freedesktop.org/git/xorg/util/modular/ $HOME/xorg/util/modular
# jhbuild -f $HOME/xorg/util/modular/jhbuildrc
#
# Source tree will be in $HOME/xorg
# Binaries will be in $HOME/xorg-build
#
#moduleset = 'http://cgit.freedesktop.org/xorg/util/modular/blob/xorg.modules'
# Requires the module set be in $HOME/xorg/util/modular/
moduleset = os.path.join(os.environ['HOME'], 'xorg', 'util', 'modular', 'xorg.modules')
modules = [ 'xorg' ]
# All modules will be in $HOME/xorg/ after the checkout
checkoutroot = os.environ['HOME']
prefix = os.path.join(os.environ['HOME'], 'xorg-build')
os.environ['ACLOCAL'] = 'aclocal -I ' + os.path.join(prefix, 'share', 'aclocal')
os.environ['PKG_CONFIG_PATH'] = os.path.join(prefix, 'lib', 'pkgconfig') \
+ ':' + os.path.join(prefix, 'share', 'pkgconfig')
#autogenargs='--cache-file=/usr/src/jhmodular/configure-cache --disable-static'
#os.environ['INSTALL'] = os.path.join(os.environ['HOME'], 'bin', 'install-check')
|