blob: 69570b14e99bb61005cc98848474f6f0d7826b0c (
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
33
34
35
36
37
38
39
|
# Maintainer: Gustavo Castro < gustawho [ at ] gmail [ dot ] com >
pkgname=kclock-git
pkgver=22.06.r8.gd256998
pkgrel=1
pkgdesc="Clock app for Plasma Mobile"
arch=(x86_64)
url="https://invent.kde.org/plasma-mobile/kclock"
license=(GPL3)
depends=(ki18n kconfig kcoreaddons knotifications kdbusaddons kirigami2 kirigami-addons-git)
makedepends=(git cmake extra-cmake-modules)
provides=(kclock)
conflicts=(kclock)
source=("git+https://invent.kde.org/plasma-mobile/kclock.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
( set -o pipefail
git describe --long --tags --first-parent --match 'v[0-9][0-9.][0-9.]*' | \
sed 's=^v==;s=^\([0-9][0-9.]*\)-\([a-zA-Z]\+\)=\1\2=;s=\([0-9]\+-g\)=r\1=;s=-=.=g'
)
}
prepare() {
cd "${pkgname%-git}"
install -d build
}
build() {
cd "${pkgname%-git}/build"
cmake ..
make
}
package() {
cd "${pkgname%-git}/build"
make DESTDIR="$pkgdir" install
}
|