36 lines
797 B
Plaintext
36 lines
797 B
Plaintext
# Description: GTK+2 implementation of wxWidgets API for GUI
|
|
# URL: http://www.wxwidgets.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: wxgtk-common
|
|
|
|
name=wxgtk
|
|
version=3.2.0
|
|
release=1
|
|
source=(https://github.com/wxWidgets/wxWidgets/releases/download/v$version/wxWidgets-$version.tar.bz2
|
|
make-abicheck-non-fatal.patch)
|
|
|
|
build() {
|
|
cd wxWidgets-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib \
|
|
--with-gtk=2 \
|
|
--with-opengl \
|
|
--enable-unicode \
|
|
--enable-graphics_ctx \
|
|
--enable-mediactrl \
|
|
--enable-webview \
|
|
--with-regex=builtin \
|
|
--with-libpng=sys \
|
|
--with-libxpm=sys \
|
|
--with-libjpeg=sys \
|
|
--with-libtiff=sys \
|
|
--disable-precomp-headers
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{include,share,lib/libwx_base*,bin/wxrc*}
|
|
}
|