blob: 33f7556c9adbfa7771d40c2cac05a9af8610c322 (
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
|
# Maintainer: Thomas Dziedzic < gostrc at gmail >
# Contributor: mickele
# Contributor: marcus fritzsch <fritschy@googlemail.com>
pkgname=soqt
pkgver=1.5.0
pkgrel=3
pkgdesc='SoQt is a library which provides the glue between Coin and Qt.'
arch=('i686' 'x86_64')
url='http://www.coin3d.org/lib/soqt/'
license=('GPL')
depends=('coin' 'qt')
makedepends=('doxygen')
options=('!libtool')
source=("http://ftp.coin3d.org/coin/src/all/SoQt-${pkgver}.tar.gz")
md5sums=('9f1e582373d66f556b1db113a93ac68e')
build() {
cd SoQt-${pkgver}
./configure --prefix=/usr \
--enable-optimization \
--enable-man \
--enable-exceptions \
--disable-debug \
--disable-maintainer-mode \
--disable-dependency-tracking \
--enable-shared \
--disable-static \
--with-qt=/usr
make
}
package() {
cd SoQt-${pkgver}
make DESTDIR=${pkgdir} install
}
|