blob: 42ea27714670d54b161bf2321f6133dafcb56e3e (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Maintainer: Nate Levesque <public at thenaterhood dot com>
# Contributor: TDY <tdy@archlinux.info>
# Contributor: Matej Horváth <matej.horvath@gmail.com>
pkgname=gscreenshot
pkgver=3.7.0
pkgrel=1
epoch=
pkgdesc="A simple screenshot tool supporting multiple backends"
arch=('any')
url="https://github.com/thenaterhood/gscreenshot"
license=('GPL')
groups=()
depends=("python"
"python-pillow"
"scrot"
"gtk3"
"python-setuptools"
"python-gobject"
"slop")
makedepends=("fakeroot"
"gettext")
checkdepends=()
optdepends=('xclip: command line clipboard support'
'xdg-utils: for opening screenshot files from gscreenshot'
'pandoc: for generating the manpage at build (or use go-md2man)'
'go-md2man: for generating the manpage at build (or use pandoc)'
'slurp: for region selecton on Wayland'
'wl-clipboard: Wayland clipboard support'
'python-dbus: required when using the XDG desktop portal backend')
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/thenaterhood/gscreenshot/archive/v$pkgver.tar.gz")
sha256sums=('c1ec562c41f98fbc498925ded8863f4ad5e6372c2b02908d5e42faea48708187')
validpgpkeys=()
prepare() {
cd $srcdir/gscreenshot-$pkgver
}
build() {
echo "Nothing to build"
}
check() {
echo "Nothing to check"
}
package() {
echo $pkgdir
cd $srcdir/gscreenshot-$pkgver
python setup.py install --root="$pkgdir/" --optimize=1 --force --single-version-externally-managed
chmod +x "$pkgdir/usr/bin/gscreenshot"
}
|