summaryrefslogtreecommitdiffstats
path: root/main/wxgtk/APKBUILD
blob: 30bbc4076b2b5145153db1dfbd7f275f357fdbbc (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=wxgtk
pkgver=2.8.12.1
pkgrel=1
pkgdesc="GTK2 port of the wxWidgets GUI library"
url="http://www.wxwidgets.org/"
arch="all"
license="wxWidgets"
depends=""
depends_dev="gtk+2.0-dev zlib-dev tiff-dev libpng-dev libjpeg-turbo-dev
	expat-dev libsm-dev"
makedepends="$depends_dev sdl-dev gst-plugins-base-dev gstreamer-dev gconf-dev"
install=""
subpackages="$pkgname-dev $pkgname-lang $pkgname-media wxbase"
source="http://downloads.sourceforge.net/wxpython/wxPython-src-${pkgver}.tar.bz2"

_builddir="$srcdir"/wxPython-src-$pkgver
prepare() {
	local i
	cd "$_builddir"
	update_config_sub || return 1
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--with-sdl \
		--enable-unicode \
		--enable-no_deps \
		--enable-shared \
		--enable-sound \
		--enable-mediactrl \
		--disable-rpath \
		--disable-optimise \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	rm -f "$pkgdir"/usr/lib/*.la
}

dev() {
	default_dev
	mv "$pkgdir"/usr/lib/wx/config "$subpkgdir"/usr/lib/wx/ || return 1
	mv "$pkgdir"/usr/bin/wxrc* "$subpkgdir"/usr/bin/ || return 1
	mv "$pkgdir"/usr/share/bakefile "$subpkgdir"/usr/share/ || return 1
}

media() {
	pkgdesc="Multimedia add-on for the wxWidgets library"
	mkdir -p "$subpkgdir"/usr/lib/
	mv "$pkgdir"/usr/lib/libwx_gtk2u_media-*.so.* "$subpkgdir"/usr/lib/
}

wxbase() {
	pkgdesc="Non-GUI support classes from the wxWidgets library"
	mkdir -p "$subpkgdir"/usr/lib/
	mv "$pkgdir"/usr/lib/libwx_baseu-*.so.* \
		"$pkgdir"/usr/lib/libwx_baseu_net-*.so.* \
		"$pkgdir"/usr/lib/libwx_baseu_xml-*.so.* \
		"$subpkgdir"/usr/lib/
}

md5sums="8c06c5941477beee213b4f2fa78be620  wxPython-src-2.8.12.1.tar.bz2"