-
Notifications
You must be signed in to change notification settings - Fork 2
/
PKGBUILD
28 lines (25 loc) · 928 Bytes
/
PKGBUILD
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: Rudra Saraswat <[email protected]>
# Original maintainer: Crystal Linux Distribution Team <[email protected]>
pkgname=jade-gui
pkgver=1.9.4
pkgrel=1
pkgdesc='Libadwaita based GUI front-end for blend-inst'
license=('GPL3')
arch=('x86_64' 'aarch64')
url="https://github.com/blend-os/jade-gui"
depends=('blend-inst' 'openssl' 'libadwaita' 'python-pytz' 'gparted' 'vte4' 'gtksourceview5' 'python-tzlocal' 'python-requests' 'reflector')
makedepends=('meson' 'ninja' 'desktop-file-utils' 'appstream-glib' 'gtk4')
source=("git+file://[BASE_ASSEMBLE_PATH]/projects/jade-gui"
"installer-autostart.desktop")
sha256sums=('SKIP'
'SKIP')
build() {
cd "jade-gui"
meson setup --prefix="/usr" _build
ninja -C _build
}
package() {
cd "jade-gui/_build"
DESTDIR="${pkgdir}" ninja install
install -Dm755 ../../installer-autostart.desktop -t "${pkgdir}"/etc/xdg/autostart/
}