summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 61431f6323cfd8da966d1ca5c951d6822d552079 (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
pkgname=kuesa-qt6
pkgver=1.3.0
pkgrel=1
arch=('x86_64')
pkgdesc="an integrated and unified workflow for designers and developers to create, optimize and integrate real time 3D content in a 3D or hybrid 2D/3D software user interface"
license=('AGPLv3')
depends=('qt6-base' 'qt6-imageformats' 'qt6-quickcontrols2' 'qt6-3d' 'qt6-declarative')
url="https://www.kdab.com/kuesa/"
source=("https://github.com/KDAB/KUESA/archive/v${pkgver}.tar.gz")
sha256sums=('988821e09c7de082d6edeb227709a83cd0734a712071c8c25ff3e32ea6d936ea')

build() {
  cd kuesa-${pkgver}/
  mkdir -p .git
  qmake-qt6
  make
}

package() {
  cd kuesa-${pkgver}/
  make INSTALL_ROOT="$pkgdir" install
  install -D -m644 LICENSE.AGPL.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
  install -D -m644 LICENSING.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSING.txt"
}