forked from ports/contrib
38 lines
1019 B
Plaintext
38 lines
1019 B
Plaintext
# Description: GTK+3 implementation of wxWidgets API for GUI
|
|
# URL: http://www.wxwidgets.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: wxgtk-common
|
|
|
|
name=wxgtk3
|
|
version=3.2.2.1
|
|
release=1
|
|
source=(https://github.com/wxWidgets/wxWidgets/releases/download/v$version/wxWidgets-$version.tar.bz2)
|
|
|
|
build() {
|
|
cmake -S wxWidgets-$version -B build -G Ninja \
|
|
-D CMAKE_INSTALL_PREFIX=/usr \
|
|
-D CMAKE_INSTALL_LIBDIR=lib \
|
|
-D CMAKE_BUILD_TYPE=Release \
|
|
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
|
|
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
|
|
-D wxBUILD_TOOLKIT=gtk3 \
|
|
-D wxUSE_OPENGL=ON \
|
|
-D wxUSE_REGEX=sys\
|
|
-D wxUSE_ZLIB=sys \
|
|
-D wxUSE_EXPAT=sys \
|
|
-D wxUSE_LIBJPEG=sys \
|
|
-D wxUSE_LIBPNG=sys \
|
|
-D wxUSE_LIBTIFF=sys \
|
|
-D wxUSE_LIBLZMA=sys \
|
|
-D wxUSE_LIBMSPACK=ON \
|
|
-D wxUSE_PRIVATE_FONTS=ON \
|
|
-D wxUSE_GTKPRINT=ON \
|
|
-Wno-dev
|
|
|
|
cmake --build build
|
|
DESTDIR=$PKG cmake --install build
|
|
|
|
rm -r $PKG/usr/{include,lib/{libwx_base*,cmake},bin/wxrc*}
|
|
mv $PKG/usr/bin/wx-config{,-gtk3}
|
|
}
|