summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: da76737e7376f755c10bba6a666904b2f9c0984f (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
# Maintainer: Brandon <aur at everdream.xyz>

pkgname=gnome-screenshot-heavy-shadow
pkgver=3.26.1
pkgrel=2
pkgdesc="Take pictures of your screen, with modified shadow effect"
arch=('i686' 'x86_64')
url="https://github.com/Cabbagec/gnome-screenshot-heavy-shadow"
license=('GPL2')
groups=('gnome')
depends=('dconf' 'gtk3' 'libcanberra')
makedepends=('meson' 'appstream-glib' 'git')
provides=('gnome-screenshot')
conflicts=('gnome-screenshot' 'gnome-screenshot-git')
source=("git+https://github.com/Cabbagec/gnome-screenshot-heavy-shadow#branch=master")
sha256sums=('SKIP')

build() {
	cd "$pkgname"
	meson _build --prefix=/usr
    cd _build
    ninja
}

package() {
	cd "$pkgname/_build"
	DESTDIR="$pkgdir/" ninja install
}