blob: d026d1b434ce690c9a6e7f663c31f2c83984a59c (
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
|
# Maintainer: kotontrion <kotontrion@tutanota.de>
pkgname=aylurs-gtk-shell-git
_pkgname=ags
pkgver=2.3.0.r62.g74cdd7e
pkgrel=2
pkgdesc="Aylurs's Gtk Shell (AGS), An eww inspired gtk widget system."
arch=('x86_64')
url="https://github.com/Aylur/ags"
license=('GPL-3.0-only')
makedepends=('git' 'meson' 'go')
depends=('gjs'
'gtk4-layer-shell'
'gobject-introspection'
'libastal-io'
'libastal'
'libastal-4'
'npm'
)
optdepends=('libastal-meta: provides all astal libs, needed for eg bluetooth, audio, etc'
'blueprint-compiler: required to define widgets using blueprint'
'dart-sass: requred for compilation of scss to css'
'gtk-layer-shell: required when using gtk3'
)
source=(
"git+${url}.git"
"git+https://github.com/Aylur/gnim.git"
)
sha256sums=('SKIP' 'SKIP')
provides=('aylurs-gtk-shell')
conflicts=('aylurs-gtk-shell')
pkgver(){
cd $srcdir/$_pkgname
git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd $srcdir/$_pkgname
git submodule init
git config submodule.lib/gnim.url "$srcdir/gnim"
git -c protocol.file.allow=always submodule update
}
build() {
cd $srcdir/$_pkgname
arch-meson build
meson compile -C build
}
package() {
cd $srcdir/$_pkgname
meson install -C build --destdir "$pkgdir"
}
|