gtk/wxgtk/PKGBUILD

31 lines
1.0 KiB
Bash
Raw Normal View History

2013-04-28 06:04:01 +08:00
pkgname=wxgtk
pkgver=2.8.12.1
2013-04-29 02:37:52 +08:00
pkgrel=2
2013-04-28 06:04:01 +08:00
pkgdesc="GTK+ implementation of wxWidgets API for GUI"
arch=('x86_64')
url="http://wxwidgets.org"
license=('custom:wxWindows')
2013-04-29 02:37:52 +08:00
depends=('gtk2' 'gstreamer0.10-base' 'sdl' 'filesystem-extra')
2013-04-28 06:04:01 +08:00
makedepends=('gstreamer0.10-base-plugins')
2013-04-29 02:37:52 +08:00
install=install
2013-04-28 06:04:01 +08:00
source=(http://downloads.sourceforge.net/wxpython/wxPython-src-${pkgver}.tar.bz2)
sha1sums=('05688dc03d61631750f5904273122bb40a2115f5')
build() {
cd wx*-${pkgver}
2013-04-29 02:37:52 +08:00
./configure --prefix=/extra/usr --libdir=/extra/usr/lib --with-gtk=2 --with-opengl --enable-unicode \
2013-04-28 06:04:01 +08:00
--enable-graphics_ctx --disable-optimize --enable-mediactrl --with-regex=builtin \
--with-libpng=sys --with-libxpm=sys --with-libjpeg=sys --with-libtiff=sys \
--with-sdl --disable-precomp-headers --without-gconf
make
make -C locale allmo
make -C contrib/src
}
package() {
cd wx*-${pkgver}
make DESTDIR="${pkgdir}" install
make -C contrib/src DESTDIR="${pkgdir}" install
2013-04-29 02:37:52 +08:00
install -D -m644 docs/licence.txt "${pkgdir}/extra/usr/share/licenses/${pkgname}/LICENSE"
2013-04-28 06:04:01 +08:00
}