blob: 6e46871645afd07b73564602e9c9140cbdb6ef43 (
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
|
# Maintainer: Salif Mehmed <mail@salif.eu>
pkgname=nemo_gleam
pkgver=1.4.0
pkgrel=1
pkgdesc="Graphical user interface for Gleam development"
arch=('x86_64')
url="https://codeberg.org/salif/nemo_gleam"
license=('Apache-2.0')
#groups=()
depends=('gleam' 'zenity' 'erlang-nox')
makedepends=('just')
optdepends=('nemo' 'dolphin' 'nodejs')
#provides=()
#conflicts=()
#replaces=()
#backup=()
options=()
#install=
#changelog=CHANGELOG
source=("https://codeberg.org/salif/nemo_gleam/archive/v${pkgver}.tar.gz")
#noextract=()
sha256sums=('5df257a243a898301393a24425fad9a47e768a3d85f44f035d2d0ff37f3fd030')
build() {
cd "${pkgname}"
just make
just make-js
}
package() {
cd "${pkgname}"
just DESTDIR="$pkgdir" install
}
|