-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathPKGBUILD
81 lines (68 loc) · 2.52 KB
/
PKGBUILD
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Maintainer: acxz <akashpatel2008 at yahoo dot com>
# Contributor: Firas Zaidan <[email protected]>
# Contributor: Sven-Hendrik Haase <[email protected]>
pkgbase=ogre-1.9
pkgname=('ogre-1.9' 'ogre-docs-1.9')
pkgver=1.9.1
pkgrel=7
pkgdesc='Scene-oriented, flexible 3D engine written in C++'
arch=('x86_64')
url='https://www.ogre3d.org'
license=('custom:MIT')
depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml'
'boost-libs')
makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 'systemd')
source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz"
"sample-comparison-operator-const-args.patch::https://github.com/OGRECave/ogre/commit/4a430a4846d1ea68f669de6b61a72934ac153f7b.patch"
"sample-comparison-operator-const-callable.patch::https://github.com/OGRECave/ogre/commit/9b1c536b85448ea971822081c7e3c775dbb5cc47.patch"
)
sha512sums=('69e1ea27ef3126ac0e09be9c1f8a9fc762630cd236ce6c3352a550ad977925387b1dfb9d124cc27bb8ac5231e036155451db988a26de6fb2df6da6f7d961115d'
'SKIP'
'SKIP'
)
prepare() {
cd "${srcdir}/ogre-${pkgver}"
patch -l --strip=1 < "${srcdir}/sample-comparison-operator-const-args.patch"
patch -l --strip=1 < "${srcdir}/sample-comparison-operator-const-callable.patch"
mkdir -p "${srcdir}/ogre-${pkgver}/build"
}
build() {
cd "${srcdir}/ogre-${pkgver}/build"
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DOGRE_BUILD_DEPENDENCIES=FALSE \
-DCMAKE_BUILD_TYPE=Release \
-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE \
-DOGRE_INSTALL_SAMPLES=TRUE \
-DOGRE_INSTALL_SAMPLES_SOURCE=TRUE
make
make OgreDoc
}
package_ogre-1.9() {
provides=('ogre=1.9')
conflicts=('ogre>=1.0')
optdepends=('cppunit: unit testing'
'python: python bindings'
'ogre-docs: documentation')
cd ogre-${pkgver}/build
make DESTDIR=${pkgdir} install
install -Dm644 ../Docs/License.html ${pkgdir}/usr/share/licenses/${pkgname}/license.html
# move docs out of this package
mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
}
package_ogre-docs-1.9() {
provides=('ogre-docs=1.9')
conflicts=('ogre-docs>=1.0')
pkgdesc="Documentation for ogre"
depends=()
cd ogre-${pkgver}/build
# move docs into this package
install -dm755 ${pkgdir}/usr/share/doc
mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
# symlink for docs
install -dm755 ${pkgdir}/usr/share/OGRE/
cd ${pkgdir}/usr/share
ln -s /usr/share/doc/OGRE/ OGRE/docs
}