blob: 1fc58b6d08605d9fe15943c3c54afac00d4281e4 (
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
|
# Maintainer: Gustavo Castro < gustawho [ at ] gmail [ dot ] com >
pkgname=plasma-camera-git
pkgver=r318.0233f87
pkgrel=1
pkgdesc="Camera application for Plasma Mobile"
arch=(x86_64 i686 arm armv6h armv7h aarch64)
url="https://invent.kde.org/plasma-mobile/plasma-camera"
license=('GPL3')
conflicts=('plasma-camera')
provides=('plasma-camera')
depends=('ki18n5' 'kconfig5' 'kcoreaddons5' 'knotifications5' 'kirigami2'
'kdbusaddons5' 'plasma-framework5')
makedepends=('qt5-tools' 'qt5-svg' 'extra-cmake-modules')
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo -B build -S "${pkgname%-git}"
cmake --build build --config RelWithDebInfo
}
package() {
DESTDIR="${pkgdir}" cmake --install build --config RelWithDebInfo
}
|