2011-09-21 19:21:22 +10:00
|
|
|
# Description: wxWidgets for GTK+.
|
|
|
|
# URL: http://www.wxwidgets.org/
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2011-09-21 19:21:22 +10:00
|
|
|
# Packager: Antti Nykanen, aon at iki dot fi
|
2014-09-18 21:33:22 +10:00
|
|
|
# Depends on: gtk glu gst-plugins-base-compat
|
2011-09-21 19:21:22 +10:00
|
|
|
|
|
|
|
name=wxgtk
|
2014-10-08 09:47:10 +11:00
|
|
|
version=3.0.2
|
2014-09-18 21:33:22 +10:00
|
|
|
release=1
|
2014-10-08 09:47:10 +11:00
|
|
|
source=(http://downloads.sourceforge.net/wxwindows/wxWidgets-$version.tar.bz2)
|
2011-09-21 19:21:22 +10:00
|
|
|
|
|
|
|
build() {
|
2014-09-18 21:33:22 +10:00
|
|
|
cd wxWidgets-$version
|
|
|
|
|
2011-09-21 19:21:22 +10:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2012-11-18 23:54:33 +11:00
|
|
|
--libdir=/usr/lib \
|
|
|
|
--with-gtk=2 \
|
|
|
|
--with-opengl \
|
2011-09-21 19:21:22 +10:00
|
|
|
--enable-unicode \
|
2013-04-01 22:31:31 +11:00
|
|
|
--enable-graphics_ctx \
|
2014-09-18 21:33:22 +10:00
|
|
|
--enable-mediactrl \
|
|
|
|
--enable-webview \
|
|
|
|
--with-regex=builtin \
|
|
|
|
--with-libpng=sys \
|
|
|
|
--with-libxpm=sys \
|
|
|
|
--with-libjpeg=sys \
|
|
|
|
--with-libtiff=sys \
|
2012-11-18 23:54:33 +11:00
|
|
|
--disable-precomp-headers
|
2011-09-21 19:21:22 +10:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r \
|
|
|
|
$PKG/usr/share/locale \
|
|
|
|
$PKG/usr/share/bakefile
|
|
|
|
}
|