36 lines
1.2 KiB
Text
36 lines
1.2 KiB
Text
# Template build file for 'wxGTK'
|
|
pkgname=wxGTK
|
|
version=2.8.12.1
|
|
revision=3
|
|
wrksrc="wxPython-src-${version}"
|
|
subpackages="${pkgname}-devel"
|
|
# XXX: GStreamer support?
|
|
makedepends="pkg-config zlib-devel libpng-devel>=1.5.10 libjpeg-turbo-devel
|
|
libXpm-devel tiff-devel expat-devel libXinerama-devel GConf-devel
|
|
gtk+-devel glu-devel"
|
|
short_desc="The wxWidgets GUI toolkit library (GTK Version)"
|
|
maintainer="davehome <davehome@redthumb.info.tm>"
|
|
homepage="http://www.wxwidgets.org/"
|
|
license="wxWindows"
|
|
distfiles="${SOURCEFORGE_SITE}/wxpython/wxPython-src-${version}.tar.bz2"
|
|
checksum=1f3f153d9f1504c6ce2d2c4b23e940b8f58b81f4cba35cda1a5bb31142243cd0
|
|
|
|
do_configure() {
|
|
./configure --prefix=/usr --enable-monolithic --with-gtk=2 --with-x \
|
|
--with-opengl --enable-unicode --enable-graphics_ctx \
|
|
--enable-optimize --enable-mediactrl --with-regex=builtin \
|
|
--with-libpng=sys --with-libxpm=sys --with-libjpeg=sys \
|
|
--with-libtiff=sys --disable-precomp-headers
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
make ${makejobs} -C locale allmo
|
|
make ${makejobs} -C contrib/src
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR="${DESTDIR}" install
|
|
make -C contrib/src DESTDIR="${DESTDIR}" install
|
|
vinstall docs/licence.txt 0644 "usr/share/licenses/${pkgname}" LICENSE
|
|
}
|