updated on Wed Jan 18 20:10:41 UTC 2012
[aur-mirror.git] / wxmotif / PKGBUILD
bloba00d8645d954efddd75306c2db2e9ef39a439b10
1 # Maintainer: Thomas Dziedzic < gostrc at gmail >
3 pkgname=wxmotif
4 pkgver=2.8.11
5 pkgrel=2
6 pkgdesc="wxWidgets is a C++ library that lets developers create applications for Windows, OS X, Linux and UNIX"
7 arch=('i686' 'x86_64')
8 url="http://www.wxwidgets.org/"
9 license=('wxWindows')
10 depends=('openmotif' 'libpng' 'libjpeg' 'libtiff')
11 conflicts=('wxgtk')
12 source=("http://downloads.sourceforge.net/project/wxwindows/${pkgver}/wxMotif-${pkgver}.tar.bz2")
13 md5sums=('708dc7eff60d907c537245e1dd918966')
15 build() {
16   rm -rf build
17   mkdir build
18   cd build
20   # upstream suggested that sometimes configuring in same dir as source causes build errors :S
21   ../wxMotif-${pkgver}/configure \
22     --with-motif \
23     --disable-shared \
24     --prefix=/usr
26   make
29 package() {
30   cd build
32   make DESTDIR=${pkgdir} install