summaryrefslogtreecommitdiff
path: root/libre/opencollada/PKGBUILD
blob: d6ec1b9799e81bc6777459c698c074c3fd88b161 (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
50
51
# Maintainer: Márcio Silva <coadde@lavabit.com>

pkgname=opencollada
pkgver=20130413
pkgrel=1
pkgdesc="Stream based reader and writer library for COLLADA files (built for the blender-libre package)"
arch=(
  i686
  x86_64
  mips64el
)
url=https://github.com/KhronosGroup/OpenCOLLADA
license=GPL
depends=(
  libxml2
  pcre
)
makedepends=(
  git
  cmake
)
source=git://github.com/KhronosGroup/OpenCOLLADA.git
sha512sums=SKIP

prepare() {
  cd $srcdir/OpenCOLLADA

  # adapt source to last blender release
  git reset --hard 9665d1614b027ffd7815dc745c4fab4d69eb3321 # Sat Apr 13 01:27:39 2013 -0700

  [[ -d build ]] && rm -r build
  mkdir build
}

build() {
  cd $srcdir/OpenCOLLADA/build

  setarch $CARCH cmake .. -DCMAKE_INSTALL_PREFIX=/usr
  setarch $CARCH make
}

package() {
  cd $srcdir/OpenCOLLADA/build

  setarch $CARCH make DESTDIR=$pkgdir install

  install -d  $pkgdir/etc/ld.so.conf.d
  echo /usr/lib/$pkgname > $pkgdir/etc/ld.so.conf.d/$pkgname.conf
}

# vim:set ts=2 sw=2 et: