author | Antonio Rojas
<arojas@archlinux.org> 2022-03-13 12:33:24 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2022-03-13 12:33:24 UTC |
parent | b5bdc9fdba57933cbfbe473aba1634bbdce9d22a |
PKGBUILD | +7 | -7 |
diff --git a/PKGBUILD b/PKGBUILD index 205642b..44ccda7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,26 +3,26 @@ # Contributor: Andrea Scarpino <andrea@archlinux.org> pkgname=kapidox -pkgver=5.91.0 +pkgver=5.92.0 pkgrel=1 pkgdesc='Frameworks API Documentation Tools' arch=(any) url='https://community.kde.org/Frameworks' license=(LGPL) depends=(python-jinja python-yaml) -makedepends=(cmake qt5-base) +makedepends=(python-build python-installer python-wheel qt5-base) groups=(kf5) source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}) -sha256sums=('434daaf49056471af72a97043c054d0104f1341f92a4464f66a2256233a2b7f7' +sha256sums=('4f5201de5878bc3fb24f9e2ebd387c0a12d7a27c407636bc878bab5a3999a56d' 'SKIP') validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org> build() { - cmake -B build -S $pkgname-$pkgver \ - -DCMAKE_INSTALL_PREFIX=/usr - cmake --build build + cd $pkgname-$pkgver + python -m build --wheel --no-isolation } package() { - DESTDIR="$pkgdir" cmake --install build + cd $pkgname-$pkgver + python -m installer --destdir="$pkgdir" dist/*.whl }