summaryrefslogtreecommitdiff
path: root/extra/qwtplot3d/PKGBUILD
blob: 6cf4ca5c36a5764b6d6dadbb4a05445c83856d4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# $Id: PKGBUILD 178992 2013-03-01 10:24:54Z andrea $
# Maintainer: Ronald van Haren <ronald@archlinux.org>
# Contributor: damir <damir@archlinux.org>

pkgname=qwtplot3d
pkgver=0.2.7
pkgrel=6
pkgdesc="Qt/OpenGL-based C++ programming library containing 3d-widgets"
arch=("i686" "x86_64")
license=('custom:zlib')
url="http://qwtplot3d.sourceforge.net/"
depends=('qt4' 'qwt')
makedepends=('mesa' 'glu')
source=("http://downloads.sourceforge.net/sourceforge/qwtplot3d/qwtplot3d-$pkgver.tgz"
        qwtplot3d-gcc44.patch qwtplot3d-qt-4.8.0.patch)
sha1sums=('4463fafb8420a91825e165da7a296aaabd70abea'
          '52fa169b651a98550f8a8391ddf52e0eaeb2c215'
          '8dcafdc9753b0f2eeea2f1e96efa6e8d3d956005')

build() {
    . /etc/profile.d/qt4.sh

    cd ${srcdir}/${pkgname}
    patch -p1 < ../qwtplot3d-gcc44.patch
    patch -p1 < ../qwtplot3d-qt-4.8.0.patch

    # build qwt:
    qmake qwtplot3d.pro
    make
}

package() {
    cd ${srcdir}/${pkgname}

    # install qwtplot3d: (by hand, because the Makefile do not provide a "install:")
    install -d ${pkgdir}/usr/{include/qwtplot3d,lib}

    for n in include/* ; do
     cp -d $n ${pkgdir}/usr/include/qwtplot3d
    done

    for n in lib/libqwtplot3d.so* ; do
     cp -d $n ${pkgdir}/usr/lib
    done

    # install custom license
    install -Dm644 ${srcdir}/${pkgname}/COPYING ${pkgdir}/usr/share/licenses/qwtplot3d/LICENSE
}