blob: cd15be27a0357ee9485b9241d59801117003ddc3 (
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: kancko <kancko>
pkgname=gnome-rounded-blur
pkgver=1.0.1
pkgrel=1
pkgdesc="GNOME Shell BlurEffect with rounded corners"
arch=('x86_64')
url="https://github.com/kancko/gnome-rounded-blur"
license=('GPL-3.0')
makedepends=(
'git'
'meson'
'mutter'
'glib2-devel'
'gobject-introspection'
)
source=("git+https://github.com/kancko/${pkgname}.git#tag=v${pkgver}")
sha256sums=('6d8b80659426d7cfbd8b9a23553fa139ba8ee1b94481bbdd457de9b1b70d7067')
prepare() {
cd $pkgname
meson setup build
}
build() {
arch-meson $pkgname build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|