diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-09-26 01:57:08 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-09-26 01:57:08 (GMT) |
commit | 7b29169fff9e7c624890c5edffe85def8a293136 (patch) | |
tree | 47753889faa3a2063b66d1c7e7681e703eb1b39a /abs/extra/wxgtk/PKGBUILD | |
parent | c491dea779dac29afff3578bf8245943817c2339 (diff) | |
download | linhes_pkgbuild-7b29169fff9e7c624890c5edffe85def8a293136.zip linhes_pkgbuild-7b29169fff9e7c624890c5edffe85def8a293136.tar.gz linhes_pkgbuild-7b29169fff9e7c624890c5edffe85def8a293136.tar.bz2 |
LinHES 6.01.00
Diffstat (limited to 'abs/extra/wxgtk/PKGBUILD')
-rw-r--r-- | abs/extra/wxgtk/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/abs/extra/wxgtk/PKGBUILD b/abs/extra/wxgtk/PKGBUILD new file mode 100644 index 0000000..d98ac43 --- /dev/null +++ b/abs/extra/wxgtk/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 29177 2009-03-06 09:02:47Z eric $ +# Maintainer: Eric Belanger <eric@archlinux.org> +# Original Contributor: Tom Newsom <Jeepster@gmx.co.uk> +# New Version - Contributor: Bob Finch <w9ya@arrl.net> +# with help from J. Santiago Hirschfeld <jsantiagoh@yahoo.com.ar> aka Angelus + +pkgname=wxgtk +pkgver=2.8.9.2 +pkgrel=2 +pkgdesc="wxGTK - GTK+ implementation of wxWidgets API for GUI" +arch=('i686' 'x86_64') +url="http://wxwidgets.org" +license=('custom:wxWindows') +depends=('gtk2>=2.12.11' 'mesa' 'libjpeg') +#makedepends=('libgnomeprintui') +#source=(http://downloads.sourceforge.net/wxwindows/wxGTK-${pkgver}.tar.bz2) +source=(http://downloads.sourceforge.net/wxpython/wxPython-src-${pkgver}.tar.bz2) +md5sums=('e3d89746af98b9279e4ff39a57f6dc63') +sha1sums=('a0d58d8b9606d04a35b9853da15eb7dfb08d5637') + +build() { + cd ${srcdir}/wxPython-src-${pkgver} + ./configure --prefix=/usr --libdir=/usr/lib --with-gtk=2 --with-opengl --enable-unicode \ + --enable-graphics_ctx --without-gnomeprint --disable-optimize || return 1 + make || return 1 + make -C locale allmo || return 1 + make DESTDIR=${pkgdir} install || return 1 + cd contrib/src + make || return 1 + make DESTDIR=${pkgdir} install || return 1 + install -D -m644 ../../docs/licence.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1 +} |