author | Antonio Rojas
<arojas@archlinux.org> 2020-06-13 18:21:37 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2020-06-13 18:21:37 UTC |
parent | e9a75fc32ff4da7a6e38700dbbacfd1f74fe5926 |
PKGBUILD | +5 | -11 |
diff --git a/PKGBUILD b/PKGBUILD index 9d4a014..762f06f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Andrea Scarpino <andrea@archlinux.org> pkgname=kconfig -pkgver=5.70.0 +pkgver=5.71.0 pkgrel=1 pkgdesc='Configuration system' arch=(x86_64) @@ -14,24 +14,18 @@ makedepends=(extra-cmake-modules qt5-tools qt5-doc clang python-pyqt5 doxygen si optdepends=('python-pyqt5: for the Python bindings') groups=(kf5) source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('3679034b2f4b637caa0c87eec9487aa8431fe43246bac84842801d7e1d2470e8' +sha256sums=('618ff0d168abf8fb73dc83431b9a76f7859d522bea100ff07c7e1632e129e3f4' 'SKIP') validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org> -prepare() { - mkdir -p build -} - build() { - cd build - cmake ../$pkgname-$pkgver \ + cmake -B build -S $pkgname-$pkgver \ -DCMAKE_INSTALL_LIBEXECDIR=lib \ -DBUILD_TESTING=OFF \ -DBUILD_QCH=ON - make + cmake --build build } package() { - cd build - make DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" cmake --install build }