blob: 315efb4dab98e46efc579450437a626c4a5b1d26 (
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
25
26
27
28
29
30
31
32
|
# Maintainer: Gustavo Castro < gustawho [ at ] gmail [ dot ] com >
pkgname=kweather-git
pkgver=0.4.r46.g9e90aa3
pkgrel=1
pkgdesc="Weather application for Plasma Mobile"
arch=(x86_64)
url="https://invent.kde.org/plasma-mobile/kweather"
license=(GPL3)
depends=('ki18n' 'kconfig' 'kcoreaddons' 'knotifications' 'kirigami2' 'kdbusaddons' 'plasma-framework' 'kweathercore-git')
makedepends=('git' 'extra-cmake-modules')
provides=('kweather')
conflicts=('kweather')
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
( set -o pipefail
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
cmake -DCMAKE_INSTALL_PREFIX=/usr -B build -S "${pkgname%-git}"
make -C build
}
package() {
make -C build DESTDIR="${pkgdir}" PREFIX=/usr install
}
|