mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
e865d130b8
Changes in 0.1.7 (2025-04-07): * Drop the autotools build system * Unbreak the CI * Prevent a crash on disconnect * Fix building with glibc >= 2.43 * Fix the eavesdrop filtering to prevent message interception Link: https://github.com/flatpak/xdg-dbus-proxy/blob/0.1.7/NEWS Signed-off-by: Daniel Golle <daniel@makrotopia.org>
41 lines
1014 B
Makefile
41 lines
1014 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=xdg-dbus-proxy
|
|
PKG_VERSION:=0.1.7
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=https://github.com/flatpak/$(PKG_NAME)/releases/download/$(PKG_VERSION)
|
|
PKG_HASH:=3ad3d27ba574e178acb5e4d438ba36ace25e3564f899c36f31c56f82c7adbbe7
|
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
PKG_LICENSE:=LGPLv2-or-later
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/meson.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
MESON_ARGS += \
|
|
-Dinstalled_tests=false \
|
|
-Dman=disabled \
|
|
-Dtests=false
|
|
|
|
define Package/xdg-dbus-proxy
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=xdg-dbus-proxy
|
|
URL:=https://github.com/containers/xdg-dbus-proxy
|
|
DEPENDS:=+glib2
|
|
endef
|
|
|
|
define Package/xdg-dbus-proxy/description
|
|
xdg-dbus-proxy is a filtering proxy for D-Bus connections.
|
|
endef
|
|
|
|
define Package/xdg-dbus-proxy/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/xdg-dbus-proxy $(1)/usr/bin
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,xdg-dbus-proxy))
|