about summary refs log tree commit diff
path: root/build/wxPython-build.sh
blob: 9a61ce72663f37c4f576d4e5246ad131d7ceea43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh

export PATH=$pkgconfig/bin:/bin:/usr/bin
export PKG_CONFIG_PATH=$glib/lib/pkgconfig:$atk/lib/pkgconfig:$pango/lib/pkgconfig:$gtk/lib/pkgconfig
export LD_LIBRARY_PATH=$glib/lib:$atk/lib:$pango/lib:$gtk/lib:$pspell/lib:$fontconfig/lib:$Xft/lib:$freetype/lib

top=`pwd`
tar xvfz $src || exit 1
cd wxPythonSrc-* || exit 1
./configure --prefix=$top --enable-gtk2 --enable-rpath=$top/lib --with-opengl || exit 1
make || exit 1
make install || exit 1
cd wxPython || exit 1
python setup.py WX_CONFIG=$top/bin/wx-config WXPORT=gtk2 build install --root=$top/python || exit 1
cd $top || exit 1
rm -rf wxPythonSrc-* || exit 1