summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: dc2eac428eec30c0c49af0829dc4c95671dc468a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Maintainer: Cosku Bas <cosku.bas@gmail.com>

pkgname=wxgtk-trenchbroom
pkgver=3.1.0
pkgrel=5
pkgdesc="GTK+2 implementation of wxWidgets API for GUI with TrenchBroom patches."
arch=('i686' 'x86_64')
url="http://wxwidgets.org"
license=('custom:wxWindows')
destdir=/opt/${pkgname}

depends=('gtk2' 'gst-plugins-base-libs' 'libsm' 'libxxf86vm' 'libnotify')
makedepends=('gst-plugins-base' 'gconf' 'glu' 'webkit2gtk' 'libnotify' 'gtk2')
options=('!emptydirs')

source=(https://github.com/wxWidgets/wxWidgets/releases/download/v${pkgver}/wxWidgets-${pkgver}.tar.bz2
	make-abicheck-non-fatal.patch
	wxGLContext_ctor_x11Direct20160316.patch
        wxgtk-filezilla-assert.patch::"https://github.com/wxWidgets/wxWidgets/commit/ce1dce11.patch")
sha1sums=('2170839cfa9d9322e8ee8368b21a15a2497b4f11'
	'dfe38650c655395b90bf082b5734c4093508bfa3'
	'6941a40b202f29f4ae36ff332fb8f1ff95244737'
	'1da8af91ef6c590da9c43dd115f52d605730f16a')

prepare() {
	cd wxWidgets-${pkgver}

	# C++ ABI check is too strict and breaks with GCC 5.1
	# https://bugzilla.redhat.com/show_bug.cgi?id=1200611
	patch -Np1 -i ../make-abicheck-non-fatal.patch

	# Apply TrenchBroom patch
	patch -p0 < ../wxGLContext_ctor_x11Direct20160316.patch

	# fix assert in FileZilla
	patch -p1 -i ../wxgtk-filezilla-assert.patch
}

build() {
	cd wxWidgets-${pkgver}
	./autogen.sh
	./configure --prefix=${destdir} --libdir=/usr/lib --with-gtk=2 --with-opengl --enable-unicode \
	--enable-graphics_ctx --enable-mediactrl --with-regex=builtin \
	--with-libpng=sys --with-libxpm=sys --with-libjpeg=sys --with-libtiff=sys \
	--disable-precomp-headers
	make
	make -C locale allmo
}

package() {
	cd wxWidgets-${pkgver}
	make DESTDIR=${pkgdir} install
	install -D -m644 "docs/licence.txt" "${pkgdir}${destdir}/share/licenses/${pkgname}/LICENSE"
	ln -s ${destdir}/include/wx-3.1/wx ${pkgdir}${destdir}/include/wx
}