blob: 538eefcd722cece1efffbd46976f3f8fc5ad654d (
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
|
#!/bin/sh
NAME="qt5-qt3d"
DESC="C++ and QML APIs for easy inclusion of 3D graphics"
MAKEDEPS=" qt5-qtbase qt5-qtdeclarative vulkan-headers"
PKG_VER=5.15.5_git20220617
_commit="3cc801c4ae41ff3f155258c4bf7e21bb5b3f6a3d"
SOURCE="https://invent.kde.org/qt/qt/qt3d/-/archive/$_commit/qt3d-$_commit.tar.gz"
prepare() {
apply_patches
# We need to make the build system think we're running in a git repository
# so it correctly symlinks during the build
mkdir .git
}
build() {
qmake-qt5
make
}
check() {
make check
}
package() {
make INSTALL_ROOT="$PKG_DEST" install
# Drop QMAKE_PRL_BUILD_DIR because reference the build dir
find "$PKG_DEST/usr/lib" -type f -name '*.prl' \
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
}
|