mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
added extra/qt6-3d
This commit is contained in:
parent
89f0dce59e
commit
0840272820
1 changed files with 35 additions and 0 deletions
35
extra/qt6-3d/PKGBUILD
Normal file
35
extra/qt6-3d/PKGBUILD
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
||||
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
||||
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - explicitly link v5/v6 with libatomic
|
||||
|
||||
pkgname=qt6-3d
|
||||
_qtver=6.0.0
|
||||
pkgver=${_qtver/-/}
|
||||
pkgrel=1
|
||||
arch=(x86_64)
|
||||
url='https://www.qt.io'
|
||||
license=(GPL3 LGPL3 FDL custom)
|
||||
pkgdesc='C++ and QML APIs for easy inclusion of 3D graphics'
|
||||
depends=(qt6-base)
|
||||
makedepends=(cmake qt6-declarative qt6-shadertools vulkan-headers git) # assimp
|
||||
optdepends=('qt6-shadertools: RHI renderer' 'qt6-declarative: QML bindings')
|
||||
groups=(qt6)
|
||||
_pkgfn="${pkgname/6-/}"
|
||||
source=(git+https://code.qt.io/qt/$_pkgfn#tag=v$_qtver)
|
||||
sha256sums=('SKIP')
|
||||
|
||||
build() {
|
||||
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && echo "target_link_libraries(3DCore PRIVATE atomic)" >> ${_pkgfn}/src/core/CMakeLists.txt
|
||||
cmake -B build -S $_pkgfn
|
||||
cmake --build build
|
||||
}
|
||||
|
||||
package() {
|
||||
DESTDIR="$pkgdir" cmake --install build
|
||||
|
||||
install -d "$pkgdir"/usr/share/licenses
|
||||
ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
|
||||
}
|
Loading…
Reference in a new issue