blob: 34fa159305f329fa39fd65dab6e39db1852e57fd (
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
|
# Maintainer: Andrey Rodionov <roand at inbox dot ru>
# Contributor: Mark Wagie <mark dot wagie at proton dot me>
pkgname=hotshots-git
pkgver=r19.e3712ae
pkgrel=4
pkgdesc="Screenshot and annotation software"
arch=('x86_64')
url="https://github.com/obiwankennedy/HotShots"
license=('GPL-2.0-or-later')
depends=('qt5-x11extras' 'qt5-multimedia')
makedepends=('git' 'qt5-tools')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("${pkgname%-git}::git+https://github.com/obiwankennedy/HotShots.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname%-git}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "${srcdir}/${pkgname%-git}"
qmake-qt5 -recursive HotShots.pro \
INSTALL_PREFIX=/usr \
INSTALL_LIBDIR=INSTALL_PREFIX/lib
make
}
package() {
cd "${srcdir}/${pkgname%-git}"
make INSTALL_ROOT="$pkgdir" install
install -Dm644 packaging/flatpak/HotShots.metainfo.xml -t \
"$pkgdir/usr/share/metainfo/"
}
|