summaryrefslogtreecommitdiff
path: root/community/soqt
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/soqt
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/soqt')
-rw-r--r--community/soqt/PKGBUILD39
1 files changed, 39 insertions, 0 deletions
diff --git a/community/soqt/PKGBUILD b/community/soqt/PKGBUILD
new file mode 100644
index 000000000..33f7556c9
--- /dev/null
+++ b/community/soqt/PKGBUILD
@@ -0,0 +1,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
+}