updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / bouml / PKGBUILD
blobdcf63fcaf2d1341116536c3e2e4463535b034146
1 # Maintainer: Mathieu Pasquet <mathieui at mathieui.net>
2 # Contributor: Anton Bazhenov <anton.bazhenov at gmail>
3 # Contributor: Andrea Agosti <cifvts@gmail.com>
5 pkgname=bouml
6 pkgver=4.22.2
7 pkgrel=2
8 pkgdesc='A free UML 2 modeler with C++, Idl, Java, PHP and Python code generation'
9 arch=('i686' 'x86_64')
10 options=('makeflags')
11 url='http://bouml.free.fr/'
12 license=('GPL')
13 depends=('qt3')
14 source=("http://bouml.free.fr/files/bouml_4.22.2.tar.gz")
15 md5sums=('9462d6c6f6491069224a44380da5a8f1')
16 build() {
17   cd "$srcdir"/${pkgname}_$pkgver
19   # we need Qt3
20   . /etc/profile.d/qt3.sh || return 1
21   export PATH="$QTDIR/bin:$PATH"
23   # export qmakespec
24   if [ `uname -m` = "x86_64" ]; then
25     export QMAKESPEC="linux-g++-64"
26   else
27     export QMAKESPEC="linux-g++-32"
28   fi
30   # make and install
31   make || return 1
32   make -I"$QTDIR/include" DESTDIR="$pkgdir" install || return 1