kiss-flatpak

Flatpak for KISS Linux.
git clone https://git.stjo.hn/kiss-flatpak
Log | Files | Refs | README | LICENSE

commit 1e1ae202097b201f9e3c74e9d82fc2b53caba972
parent 99bbba32e4fdd34c5a7cb7e90715c8d30b301fa2
Author: St John Karp <contact@stjo.hn>
Date:   Sat, 18 Jun 2022 16:37:21 -0400

xdg-dbus-proxy: Add package

Created a new package. If Flatpak tries to build its own internal
dbus-proxy, it fails. There's an unreleased fix for this but in
the meantime it's easier to package xdg-dbus-proxy and build
Flatpak with the flag --with-system-dbus-proxy.

Diffstat:
Aflatpak/xdg-dbus-proxy/build | 8++++++++
Aflatpak/xdg-dbus-proxy/checksums | 1+
Aflatpak/xdg-dbus-proxy/depends | 1+
Aflatpak/xdg-dbus-proxy/sources | 1+
Aflatpak/xdg-dbus-proxy/version | 1+
5 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/flatpak/xdg-dbus-proxy/build b/flatpak/xdg-dbus-proxy/build @@ -0,0 +1,8 @@ +#!/usr/bin/env sh + +#./autogen.sh +./configure \ + $KISS_CONFIGURE \ + --prefix=/usr +make +make install diff --git a/flatpak/xdg-dbus-proxy/checksums b/flatpak/xdg-dbus-proxy/checksums @@ -0,0 +1 @@ +1ec0eab53d1e49966d722352bcfd51ac402dce5190baedc749a8541e761670ab diff --git a/flatpak/xdg-dbus-proxy/depends b/flatpak/xdg-dbus-proxy/depends @@ -0,0 +1 @@ +glib diff --git a/flatpak/xdg-dbus-proxy/sources b/flatpak/xdg-dbus-proxy/sources @@ -0,0 +1 @@ +https://github.com/flatpak/xdg-dbus-proxy/releases/download/VERSION/xdg-dbus-proxy-VERSION.tar.xz diff --git a/flatpak/xdg-dbus-proxy/version b/flatpak/xdg-dbus-proxy/version @@ -0,0 +1 @@ +0.1.4 1