diff options
Diffstat (limited to 'repo/libsecret')
-rw-r--r-- | repo/libsecret/libsecret.xibuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/repo/libsecret/libsecret.xibuild b/repo/libsecret/libsecret.xibuild new file mode 100644 index 0000000..e62dcd7 --- /dev/null +++ b/repo/libsecret/libsecret.xibuild @@ -0,0 +1,23 @@ +#!/bin/sh + +NAME="libsecret" +DESC="Library for storing and retrieving passwords and other secrets" + +MAKEDEPS="glib intltool libxslt docbook-xsl libgcrypt gobject-introspection vala meson" + +PKG_VER=0.20.4 +SOURCE="https://download.gnome.org/sources/libsecret/${PKG_VER%.*}/libsecret-$PKG_VER.tar.xz" + +build() { + meson --prefix=/usr \ + --default-library=both \ + -Dgtk_doc=false \ + output + meson compile ${JOBS:+-j ${JOBS}} -C output +} + +package() { + DESTDIR="$PKG_DEST" meson install --no-rebuild -C output +} + + |