blob: cdeb7acae434256bfc2c2f83154b25d5019d7d2e (
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
|
# Maintainer: Rodrigo Sakaguchi <rodrigosaka@outlook.com>
pkgname=gnome-pomodoro-extension
pkgver=1.1.2
pkgrel=1
pkgdesc='GNOME Shell extension that manages focus and break cycles with the Pomodoro technique'
arch=('i686' 'x86_64')
url='https://github.com/focustimerhq/FocusTimer'
license=('GPL-3.0-or-later')
depends=(
'glib2'
'gtk4'
'libadwaita'
'graphene'
'pango'
'gom'
'libpeas-2'
'wayland'
'sqlite'
'gstreamer'
'json-glib'
'cairo'
'gobject-introspection'
'dconf'
'hicolor-icon-theme'
)
makedepends=('meson' 'vala' )
source=("$pkgname-$pkgver.tar.gz::https://github.com/focustimerhq/FocusTimer/archive/$pkgver.tar.gz")
sha256sums=('726ae7e87ba7b488c7fcb472a6f95469ccae3a32bfbfe15954a68de6d35f5977')
build() {
cd "$srcdir/FocusTimer-$pkgver"
arch-meson build
meson compile -C build
}
package() {
cd "$srcdir/FocusTimer-$pkgver"
meson install -C build --destdir "$pkgdir"
}
|