blob: 996acd752440e3fc5a4c5c13ad5f4263670144b7 (
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: Stas Fomin <stanislav.fomin@gmail.com>
pkgname=screenpen-git
pkgver=1.1
pkgrel=1
pkgdesc='On-screen drawing application for presentations'
url='https://github.com/belonesox/screenpen'
arch=('i686' 'x86_64')
license=('GPL3')
source=(
'git+https://github.com/belonesox/screenpen.git'
)
sha256sums=(
'SKIP'
)
makedepends=('git' 'cmake')
depends=(
'qt5-base'
)
prepare() {
cd "$srcdir"/screenpen
mkdir -p build
}
package() {
cd "$srcdir"/screenpen/build
cmake .. -DCMAKE_INSTALL_PREFIX="$pkgdir"/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-w
make
make install
}
|