PKGBUILDs/aur/wxbase/PKGBUILD

31 lines
864 B
Bash
Raw Normal View History

2010-12-22 01:39:15 +00:00
# Maintainer: halim <sagikliwon@gmail.com>
plugrel=1
2010-12-22 01:39:15 +00:00
pkgname=wxbase
pkgver=2.8.11
pkgrel=2
pkgdesc="wxBase - wxWidgets base libraries for no X install"
arch=('i686' 'x86_64')
url="http://wxwidgets.org"
license=('custom:wxWindows')
depends=('zlib')
conflicts=('wxgtk')
makedepends=('')
source=(http://downloads.sourceforge.net/wxwindows/wxGTK-${pkgver}.tar.bz2)
md5sums=('6040933d200037f90f6aa1c5169e7ec6')
build() {
cd ${srcdir}/wxGTK-${pkgver}
./configure --prefix=/usr --libdir=/usr/lib \
--disable-gui --disable-debug --enable-unicode --disable-compat24 \
--disable-compat26 --with-zlib=sys --without-odbc \
--without-expat --without-libmspack --without-subdirs || return 1
make CC="gcc" || return 1
make DESTDIR=${pkgdir} install || return 1
cd docs || return 1
install -D -m644 licence.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1
}