mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
94adc18ccc
coin: introduced bug fix from debian bugreport, this solve also freecad compile issue freecad: from version >0.13 freecad use cmake to configure the build options
63 lines
1.6 KiB
Bash
63 lines
1.6 KiB
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=coin
|
|
_pkgname=Coin
|
|
pkgver=3.1.3
|
|
pkgrel=2
|
|
pkgdesc='Coin3D is a high-level 3D graphics toolkit on top of OpenGL.'
|
|
url='http://www.coin3d.org/'
|
|
license=('GPL')
|
|
arch=('x86_64')
|
|
depends=('mesa' 'expat')
|
|
makedepends=('doxygen')
|
|
optdepends=('openal: sound/dynamic linking support'
|
|
'fontconfig: dynamic linking support'
|
|
'zlib: dynamic linking support'
|
|
'freetype2: dynamic linking support'
|
|
'spidermonkey: dynamic linking support')
|
|
options=('!libtool')
|
|
categories=('graphics')
|
|
changelog=ChangeLog
|
|
source=("https://bitbucket.org/Coin3D/coin/downloads/Coin-${pkgver}.tar.gz")
|
|
md5sums=('1538682f8d92cdf03e845c786879fbea')
|
|
|
|
build() {
|
|
cd $_pkgname-$pkgver
|
|
|
|
# fix http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667139
|
|
sed -i "/#include <Inventor\/C\/basic.h>/i #include <Inventor/C/errors/debugerror.h>" include/Inventor/SbBasic.h
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--enable-optimization \
|
|
--enable-3ds-import \
|
|
--enable-javascript-api \
|
|
--enable-threadsafe \
|
|
--enable-exceptions \
|
|
--enable-man \
|
|
--with-mesa \
|
|
--disable-debug \
|
|
--enable-shared \
|
|
--disable-maintainer-mode \
|
|
--disable-dependency-tracking \
|
|
--enable-system-expat
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $_pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
|
|
# Final adjustments.
|
|
for _FILE in threads deprecated
|
|
do
|
|
mv $pkgdir/usr/share/man/man3/$_FILE.3 $pkgdir/usr/share/man/man3/$pkgname-$_FILE.3
|
|
done
|
|
}
|