diff options
author | davidovski <david@davidovski.xyz> | 2022-06-04 15:08:04 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-04 15:08:04 +0100 |
commit | 873665024ebfaa761ee49b508a79db7178aeb778 (patch) | |
tree | 6cd3b4ce3a9f4b0586ffa48e73a6ba4c8da2db43 /repo/gjs | |
parent | 4445f6e15185f58dc599390ab74df3ca19b437b7 (diff) |
added gnupg
Diffstat (limited to 'repo/gjs')
-rw-r--r-- | repo/gjs/gjs.xibuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/gjs/gjs.xibuild b/repo/gjs/gjs.xibuild new file mode 100644 index 0000000..3624610 --- /dev/null +++ b/repo/gjs/gjs.xibuild @@ -0,0 +1,22 @@ +#!/bin/sh + +NAME="gjs" +DESC="GNOME javascript library" + +MAKEDEPS="dbus gobject-introspection js91 gtk3 cairo meson libffi" + +PKG_VER=1.72.0 +SOURCE="https://download.gnome.org/sources/gjs/${PKG_VER%.*}/gjs-$PKG_VER.tar.xz" + +build() { + meson --prefix=/usr \ + -Dprofiler=disabled \ + -Dinstalled_tests=false \ + output + meson compile ${JOBS:+-j ${JOBS}} -C output +} + +package() { + DESTDIR="$PKG_DEST" meson install --no-rebuild -C output +} + |