summary refs log tree commit diff
path: root/pkgs/development/libraries/wxGTK/builder.sh
blob: d2b0880add9369f3edc0cf4f435d7f28fb4699da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
buildinputs="$pkgconfig $gtk $libtiff $libjpeg $libpng $zlib"
. $stdenv/setup

extraflags=
if test -z "$compat22"; then
  extraflags="--disable-compat22 $extraflags"
fi

tar xvfj $src
cd wxGTK-*
./configure --prefix=$out --enable-gtk2 $extraflags
make
make install