diff options
author | gustawho | 2021-05-13 20:50:35 -0600 |
---|---|---|
committer | gustawho | 2021-05-13 20:50:35 -0600 |
commit | 8e832c652e0d9a3d26ea88e8c2bb5a750c73c5af (patch) | |
tree | bde8e04e13977c09feefad0d5c715bd49666d6d8 /PKGBUILD | |
parent | c756febf85f60ddeea6387360b73ad06feb870b6 (diff) | |
download | aur-8e832c652e0d9a3d26ea88e8c2bb5a750c73c5af.tar.gz |
PKGBUILD cleanup
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,14 +1,14 @@ # Maintainer: Gustavo Castro < gustawho [ at ] gmail [ dot ] com > pkgname=kweathercore-git -pkgver=release.0.1.1.r2.g7e84fac +pkgver=v21.05.r4.gca67d2c pkgrel=1 pkgdesc="Library to facilitate retrieval of weather information including forecasts and alerts" -arch=(x86_64) +arch=(x86_64 i686 arm armv6h armv7h aarch64) url="https://invent.kde.org/libraries/kweathercore" license=(GPL3) depends=('ki18n' 'qt5-location') -makedepends=('git' 'extra-cmake-modules') +makedepends=('git' 'extra-cmake-modules' 'qt5-tools') provides=('kweathercore') conflicts=('kweathercore') source=("git+${url}.git") @@ -23,10 +23,10 @@ pkgver() { } build() { - cmake -DCMAKE_INSTALL_PREFIX=/usr -B build -S "${pkgname%-git}" - make -C build + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo -B build -S "${pkgname%-git}" + cmake --build build --config RelWithDebInfo } package() { - make -C build DESTDIR="${pkgdir}" PREFIX=/usr install -} + DESTDIR="${pkgdir}" cmake --install build --config RelWithDebInfo +}
\ No newline at end of file |