blob: d70d3d18f56be6e842506f5791225148e2b1bc11 (
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
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
pkgname=maui-booth-git
pkgver=r36.5617d7a
pkgrel=1
pkgdesc="A convergent camera app"
arch=(x86_64 i686 arm armv6h armv7h aarch64)
url="https://invent.kde.org/maui/booth"
license=(GPL3)
depends=('ki18n' 'knotifications' 'kio' 'attica' 'mauikit-git'
'kirigami2' 'qt5-svg' 'qt5-quickcontrols2' 'qt5-multimedia')
makedepends=('git' 'extra-cmake-modules')
provides=('maui-booth')
conflicts=('maui-booth')
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd booth
( 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 booth
make -C build
}
package() {
make -C build DESTDIR="${pkgdir}" PREFIX=/usr install
}
|