mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
42 lines
918 B
Bash
42 lines
918 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer almack@chakra-project.org
|
|
# contributor Sven-Hendrik Haase <sh@lutzhaase.com>
|
|
|
|
pkgname=opencollada
|
|
pkgver=20140108
|
|
pkgrel=2
|
|
pkgdesc="Stream based reader and writer library for COLLADA files"
|
|
arch=('x86_64')
|
|
url="https://github.com/KhronosGroup/OpenCOLLADA"
|
|
license=('GPL')
|
|
depends=('libxml2' 'pcre' 'boost')
|
|
makedepends=('git' 'cmake')
|
|
source=('opencollada.conf'
|
|
'git://github.com/KhronosGroup/OpenCOLLADA.git')
|
|
md5sums=('5f7e9d79ab86756648b648ee5ed6ce1d'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd "$srcdir"/OpenCOLLADA
|
|
|
|
[[ -d build ]] && rm -r build
|
|
mkdir build && cd build
|
|
|
|
cmake .. \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DUSE_SHARED=ON \
|
|
-DUSE_STATIC=OFF
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/OpenCOLLADA/build
|
|
|
|
make DESTDIR=$pkgdir install
|
|
|
|
install -Dm644 $srcdir/opencollada.conf $pkgdir/etc/ld.so.conf.d/opencollada.conf
|
|
}
|
|
|